chore: bump package to v0.3.6 #51
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: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- { runner: macos-latest, filter: darwin } | |
- { runner: ubuntu-latest, filter: linux } | |
name: ${{ matrix.filter }} | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/nix-setup | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
out/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo- | |
- name: Build ${{ matrix.filter }} targets | |
run: mask build --filter ${{ matrix.filter }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.filter }} | |
path: out/bin/* | |
release: | |
permissions: | |
contents: write | |
id-token: write # used by cosign keyless signing | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# required for goreleaser | |
fetch-depth: 0 | |
- uses: ./.github/actions/nix-setup | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/download-artifact@v3 | |
with: | |
path: out/bin/ | |
- name: Release | |
run: goreleaser release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }} |