Add Nightcrawler and Magneto. #101
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: configure vue | |
run: | | |
echo "module.exports = {publicPath: '/marvel-lcg-randomizer/'};" > vue.config.js | |
- name: NPM CI | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: GH Pages deploy | |
uses: Cecilapp/[email protected] | |
env: | |
EMAIL: [email protected] # must be a verified email | |
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} # https://github.com/settings/tokens | |
BUILD_DIR: dist/ # "_site/" by default |