We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef3b5f commit bc6c247Copy full SHA for bc6c247
.github/workflows/build.yml
@@ -0,0 +1,20 @@
1
+name: Build
2
+on:
3
+ pull_request:
4
+ push:
5
+ schedule:
6
+ - cron: '0 2 * * *'
7
+jobs:
8
+ build:
9
+ name: build
10
+ runs-on: ubuntu-latest
11
+ timeout-minutes: 5
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - run: "chmod +x ${GITHUB_WORKSPACE}/dash-to-dash.sh"
15
+ - run: "${GITHUB_WORKSPACE}/dash-to-dash.sh"
16
+ - name: Deploy
17
+ uses: JamesIves/github-pages-deploy-action@4.1.4
18
+ with:
19
+ branch: gh-pages # The branch the action should deploy to.
20
+ folder: . # The folder the action should deploy.
0 commit comments