Release #2
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 "cd uniffi && uniffi-bindgen-cs --config ./uniffi.toml ./src/interface.udl && cargo build --release" | |
- name: Archive production artifacts | |
run: tar czvf dnssec-prover-${{ github.ref_name }}-${{ runner.arch }}.tar.gz -C uniffi/src dnssec_prover.cs -C uniffi/target/release libdnssec_prover_uniffi.* | |
working-directory: uniffi | |
- name: Upload Release Asset | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: ./uniffi/dnssec-prover-${{ github.ref_name }}-${{ runner.arch }}.tar.gz |