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 75ff7f8Copy full SHA for 75ff7f8
.github/workflows/build.yml
@@ -0,0 +1,19 @@
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: "${GITHUB_WORKSPACE}/dash-to-dash.sh"
15
+ - name: Deploy
16
+ uses: JamesIves/github-pages-deploy-action@4.1.4
17
+ with:
18
+ branch: gh-pages # The branch the action should deploy to.
19
+ folder: . # The folder the action should deploy.
0 commit comments