Skip to content

Merge pull request #38 from bartwell/bugfix/firebase_module_fixes #6

Merge pull request #38 from bartwell/bugfix/firebase_module_fixes

Merge pull request #38 from bartwell/bugfix/firebase_module_fixes #6

Workflow file for this run

name: pages-wizard
on:
push:
branches:
- main
paths:
- content/wizard/**
- content/scripts/generate-wizard-version.sh
- version.properties
- .github/workflows/publish.yml
- .github/workflows/pages-wizard.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-wizard
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate wizard version.json
run: ./content/scripts/generate-wizard-version.sh
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: content/wizard
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4