Skip to content

Merge pull request #25 from pagopa/fix-printit-configuration #65

Merge pull request #25 from pagopa/fix-printit-configuration

Merge pull request #25 from pagopa/fix-printit-configuration #65

name: Deploy GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
deploy:
runs-on: ubuntu-latest
environment: github-pages
steps:
- name: Checkout 🛎️
id: checkout
# from https://github.com/actions/checkout/commits/main
uses: actions/checkout@1f9a0c22da41e6ebfa534300ef656657ea2c6707
- name: Flutter action ⬇️
uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa # v2.10.0
with:
channel: 'stable'
cache: true
- name: Build 🔧
run: flutter build web --base-href /pagopa-status-page/
- name: Setup Pages ⚙️
uses: actions/configure-pages@b8130d9ab958b325bbde9786d62f2c97a9885a0e # v3
- name: Upload artifact ⬆️
uses: actions/upload-pages-artifact@84bb4cd4b733d5c320c9c9cfbc354937524f4d64 # v1
with:
path: './build/web/'
- name: Deploy to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@f27bcc15848fdcdcc02f01754eb838e44bcf389b # v1