Minor rephrase on the footer text #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to GH | |
on: [push] | |
jobs: | |
test: | |
name: Test and deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '9' | |
- name: Test something (currently we have no tests) | |
run: | | |
npm install -g [email protected] | |
export NODE_OPTIONS=--use-openssl-ca | |
npm install | |
gulp build | |
- name: Deploy to gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
if: github.ref == 'refs/heads/master' && job.status == 'success' |