Skip to content

Commit f764b4a

Browse files
authored
Merge pull request #73 from ruby/autodeploy
Autodeploy
2 parents 0f52ba2 + e517a43 commit f764b4a

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
with:
15+
persist-credentials: false
16+
- name: Build and Deploy
17+
uses: JamesIves/github-pages-deploy-action@releases/v3
18+
with:
19+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
20+
BRANCH: gh-pages
21+
FOLDER: build

build

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)