Skip to content

Update in-game data from 0.10.28.21014 #60

Update in-game data from 0.10.28.21014

Update in-game data from 0.10.28.21014 #60

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master
jobs:
build-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- run: yarn install
- run: yarn build
- uses: actions/upload-pages-artifact@v1
with:
path: dist
deploy:
needs: build-gh-pages
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2