Merge pull request #5242 from swaponline/fix-rpc-problems #1888
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 "bot@swaponline.io" | |
git config --global user.name "buildbot" | |
sh scripts/deploy $super_secret | |
env: | |
CI: true | |
super_secret: ${{ secrets.buildbot }} | |