Skip to content

release

release #15

Workflow file for this run

name: release
on:
workflow_run:
workflows: [build]
types: [completed]
branches: [main]
jobs:
release:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v24
- run: nix develop --impure -c semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}