2023-02-11 21:12:55 +01:00
|
|
|
name: "Deploy new pages build"
|
2022-10-24 15:51:22 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "pages"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- uses: actions/upload-pages-artifact@v1
|
|
|
|
with:
|
2023-01-11 02:51:14 +01:00
|
|
|
path: ".app"
|
2022-10-24 15:51:22 +02:00
|
|
|
- name: Deploy to gh pages
|
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v1
|