get week lucky number #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: get week lucky number | |
on: | |
schedule: | |
- cron: "0 10 * * 0" #맀주 μΌμμΌ μ€μ 10μ | |
workflow_dispatch: | |
jobs: | |
build-svg: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- run: npm install | |
- name: run js | |
run: node build.js | |
- name: svg commit | |
uses: EndBug/add-and-commit@v4 | |
with: | |
author_name: birariro | |
author_email: [email protected] | |
message: "week lucky numbers" | |
add: "*.svg" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |