Merge pull request #5241 from swaponline/fix-qr-code-generation #1887
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 swaponline.github.io | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install, build and deploy | |
run: | | |
npm i | |
git config --global user.email "[email protected]" | |
git config --global user.name "buildbot" | |
sh scripts/deploy $super_secret | |
env: | |
CI: true | |
super_secret: ${{ secrets.buildbot }} | |