Skip to content

Show GAMEID instead of region (Fix #7) #5

Show GAMEID instead of region (Fix #7)

Show GAMEID instead of region (Fix #7) #5

Workflow file for this run

name: Deploy Pages
on: { push: { branches: [master] } }
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/configure-pages@v3
- name: build
run: make
- uses: actions/upload-pages-artifact@v1
with: { path: '.' }
- uses: actions/deploy-pages@v2