Skip to content

Write the amended patch to cabal.project instead of cabal.project.local #41

Write the amended patch to cabal.project instead of cabal.project.local

Write the amended patch to cabal.project instead of cabal.project.local #41

Workflow file for this run

name: Create and publish Agda WASM
on:
push:
branches: ['master']
tags: ['v*']
paths:
- Dockerfile
- .github/workflows/deploy.yml
- agda-wasm.patch
- setup-ghc-wasm.py
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
deploy-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
- name: Pull WASM from Docker image
uses: shrink/actions-docker-extract@v3
with:
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.push.outputs.digest }}
path: opt
destination: dist
- name: Git describe
run: echo "REPO_VERSION=$(git describe --tags --always)" >> $GITHUB_ENV
- name: Upload WASM
uses: actions/upload-artifact@v4
with:
path: dist/
name: agda-wasm-${{ env.REPO_VERSION }}