Skip to content

Commit 75ff7f8

Browse files
committed
Use gh actions
1 parent 6ef3b5f commit 75ff7f8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)