blob: e3929923816246fd64e781cb62269d4712a7c8ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
name: Shitcoding
run-name: Running scheduled tasks
on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
jobs:
Do-snapshot:
name: "vc-thm"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run vc-thm
run: |
./viewcount-tothemoooon/vc-thm 'https://okky.kr/articles/1519671' &
./viewcount-tothemoooon/vc-thm 'https://okky.kr/articles/1519674' &
wait
wait
|