Skip to content

Merge pull request #47 from flutter-belgium/krispypen-patch-1 #32

Merge pull request #47 from flutter-belgium/krispypen-patch-1

Merge pull request #47 from flutter-belgium/krispypen-patch-1 #32

Workflow file for this run

name: nextjs deploy
on:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Setup Pages
uses: actions/configure-pages@v3
- uses: actions/checkout@v3
- run: .github/workflows/scripts/bash/export.sh
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './out_full_export'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1