add a post by covid-and-flu #485
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: generate_site_and_deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Default to bash | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache hugo resources | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.cache/hugo_cache | |
key: ${{ runner.os }}-flake-${{ hashFiles('flake.lock') }}-hugomod-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-flake-${{ hashFiles('flake.lock') }}-hugomod- | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
- uses: DeterminateSystems/nix-installer-action@v16 | |
- uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: Build hugo-nix to measure how longtime used to build | |
run: 'nix run .#hugo-nix -- version' | |
- name: Install Node.js dependencies | |
run: '[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && nix develop --command npm ci || true' | |
# Required go env before this step because hugo module depends on it. Now whole setup is completed with Nix | |
- name: Build with Hugo | |
env: | |
# For maximum backward compatibility with Hugo modules | |
HUGO_ENVIRONMENT: production | |
HUGO_ENV: production | |
run: | | |
nix run .#hugo-nix -- --panicOnWarning \ | |
--gc \ | |
--minify \ | |
--baseURL "${{ steps.pages.outputs.base_url }}/" | |
- name: Upload artifact | |
if: github.event.sender.login == 'pankona' | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./public | |
deploy-staging: | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
needs: build | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download build assets | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
gh run download --repo '${{ github.repository }}' | |
- name: Extract the downloaded artifact | |
run: | | |
mkdir public | |
tar -xf ./github-pages/artifact.tar -C public | |
tree ./public | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_PANKONA_BLOG }} | |
projectId: pankona-blog | |
deploy-production: | |
# 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 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.event.sender.login == 'pankona' && github.event_name != 'pull_request' | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |