Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Merge pull request #67 from Doxoh/fix_server_list #118

Merge pull request #67 from Doxoh/fix_server_list

Merge pull request #67 from Doxoh/fix_server_list #118

Workflow file for this run

name: Deploy pages
on:
push:
branches: [master]
release:
branches: [master]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install NPM Packages
run: npm install
- name: Build VUE Files
run: |
npm run build
cp CNAME ./dist/CNAME
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.