Release #9
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: Release | |
on: | |
release: | |
types: published | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] # Windows is not supported (not working with devenv/nix setup) | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: devenv | |
- name: Install devenv.sh | |
run: nix profile install nixpkgs#devenv | |
- name: Build bindings | |
run: | | |
devenv shell -- bash -c "make build-uniffi-bindings" | |
- name: Create Release Asset | |
run: make release-uniffi-bindings VERSION=${{ github.ref_name }} | |
- name: Set ARCH environment variable | |
run: echo "ARCH=$(uname -m)" >> $GITHUB_ENV | |
- name: Upload Release Asset | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: ./dist/dnssec-prover-${{ github.ref_name }}-${{ env.ARCH }}.tar.gz |