Skip to content

fix(ci): use real musl cross-compiler for aarch64, fix nfpm download #59

fix(ci): use real musl cross-compiler for aarch64, fix nfpm download

fix(ci): use real musl cross-compiler for aarch64, fix nfpm download #59

Workflow file for this run

name: Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Ensure site exists
run: test -f site/index.html
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4