forked from chainguard-dev/malcontent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: egibs <[email protected]>
- Loading branch information
Showing
6 changed files
with
262 additions
and
149 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,101 @@ | ||
name: Cut Release | ||
name: release | ||
|
||
# run only on tags | ||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
id-token: write # needed for federation | ||
contents: write # needed to write releases | ||
env: | ||
VERSION_FILE: pkg/version/version.go | ||
YARA_VERSION: 4.5.1 | ||
|
||
jobs: | ||
tag: | ||
if: ${{ github.repository }} == 'chainguard-dev/bincapz' | ||
runs-on: ubuntu-latest | ||
release-arm64: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | ||
with: | ||
go-version-file: go.mod | ||
cache: true | ||
- uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0 | ||
- name: Fix zig-cache permissions | ||
run: | | ||
mkdir ${{ env.ZIG_USE_GLOBAL_CACHE_DIR }} | ||
sudo chown -R $(whoami):$(id -u) ${{ env.ZIG_USE_GLOBAL_CACHE_DIR }} | ||
env: | ||
ZIG_USE_GLOBAL_CACHE_DIR: $HOME/zig-cache | ||
- name: Set output | ||
id: macos_sdk | ||
run: echo "path=$(xcrun --show-sdk-path)" >> $GITHUB_OUTPUT | ||
- name: Install yara | ||
run: | | ||
brew tap messense/macos-cross-toolchains | ||
brew install automake autoconf libtool pkg-config x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu mingw-w64 | ||
mkdir -p /tmp/yara && cd /tmp/yara | ||
wget https://github.com/VirusTotal/yara/archive/refs/tags/v${{ env.YARA_VERSION }}.tar.gz | ||
tar -zxf v${{ env.YARA_VERSION }}.tar.gz | ||
cd yara-${{ env.YARA_VERSION }} | ||
./bootstrap.sh | ||
./configure | ||
make | ||
sudo make install | ||
rm -rf v${{ env.YARA_VERSION }}.tar.gz yara-${{ env.YARA_VERSION }} | ||
cd - | ||
- uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 | ||
with: | ||
version: ~> v2 | ||
args: release --clean -f .goreleaser_arm64.yaml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SDK_PATH: ${{ steps.macos_sdk.outputs.path }} | ||
VERSION: ${{ github.ref_name }} | ||
ZIG_USE_GLOBAL_CACHE_DIR: $HOME/zig-cache | ||
release-amd64: | ||
runs-on: macos-13 | ||
steps: | ||
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde | ||
with: | ||
egress-policy: audit | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
- uses: chainguard-dev/actions/setup-gitsign@e82b4e5ae10182af72972addcb3fedf7454621c8 | ||
- name: Get Version | ||
id: get-version | ||
run: | | ||
VERSION=$(awk -F'"' '/ID string =/ {print $2}' ${{ env.VERSION_FILE }}) | ||
if [[ ! "${VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
echo "Error: VERSION is not a valid semver" | ||
exit 1 | ||
fi | ||
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" | ||
- name: Create Release | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
if: ${{ steps.get-version.outputs.VERSION != '' }} | ||
run: | | ||
VERSION=${{ steps.get-version.outputs.VERSION }} | ||
if [[ ! "${VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
echo "Error: VERSION is not a valid semver" | ||
exit 1 | ||
fi | ||
git config --global tag.gpgsign true | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
gh release create "$VERSION" --title "$VERSION" --notes "Release $VERSION" --draft | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | ||
with: | ||
go-version-file: go.mod | ||
cache: true | ||
- uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0 | ||
- name: Fix zig-cache permissions | ||
run: | | ||
mkdir ${{ env.ZIG_USE_GLOBAL_CACHE_DIR }} | ||
sudo chown -R $(whoami):$(id -u) ${{ env.ZIG_USE_GLOBAL_CACHE_DIR }} | ||
env: | ||
ZIG_USE_GLOBAL_CACHE_DIR: $HOME/zig-cache | ||
- name: Set output | ||
id: macos_sdk | ||
run: echo "path=$(xcrun --show-sdk-path)" >> $GITHUB_OUTPUT | ||
- name: Install yara | ||
run: | | ||
brew tap messense/macos-cross-toolchains | ||
brew install automake autoconf libtool pkg-config x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu mingw-w64 | ||
mkdir -p /tmp/yara && cd /tmp/yara | ||
wget https://github.com/VirusTotal/yara/archive/refs/tags/v${{ env.YARA_VERSION }}.tar.gz | ||
tar -zxf v${{ env.YARA_VERSION }}.tar.gz | ||
cd yara-${{ env.YARA_VERSION }} | ||
./bootstrap.sh | ||
./configure | ||
make | ||
sudo make install | ||
rm -rf v${{ env.YARA_VERSION }}.tar.gz yara-${{ env.YARA_VERSION }} | ||
cd - | ||
- uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 | ||
with: | ||
version: ~> v2 | ||
args: release --clean -f .goreleaser_amd64.yaml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SDK_PATH: ${{ steps.macos_sdk.outputs.path }} | ||
VERSION: ${{ github.ref_name }} | ||
ZIG_USE_GLOBAL_CACHE_DIR: $HOME/zig-cache |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Sourced and adapted from https://github.com/goreleaser/goreleaser-example-zig-cgo/blob/master/.goreleaser.yaml | ||
project_name: bincapz_amd64 | ||
|
||
before: | ||
hooks: | ||
- go mod tidy | ||
|
||
env: | ||
- COSIGN_YES=true | ||
|
||
builds: | ||
- id: bincapz-macos-amd64-build | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -w -X main.BuildVersion={{.Env.VERSION}} | ||
flags: | ||
- -trimpath | ||
- -buildmode=pie | ||
env: | ||
- CGO_ENABLED=1 | ||
- id: bincapz-linux-amd64-build | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -w -X main.BuildVersion={{.Env.VERSION}} | ||
flags: | ||
- -trimpath | ||
env: | ||
- CGO_ENABLED=1 | ||
- >- | ||
{{- if eq .Os "linux" }} | ||
{{- if eq .Arch "amd64" }}CC=x86_64-linux-gnu-gcc{{- end }} | ||
{{- end }} | ||
- >- | ||
{{- if eq .Os "linux" }} | ||
{{- if eq .Arch "amd64" }}CXX=x86_64-linux-gnu-g++{{- end }} | ||
{{- end }} | ||
- id: bincapz-windows-amd64-build | ||
goos: | ||
- windows | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -w -X main.BuildVersion={{.Env.VERSION}} | ||
flags: | ||
- -trimpath | ||
env: | ||
- CGO_ENABLED=1 | ||
- >- | ||
{{- if eq .Os "windows" }} | ||
{{- if eq .Arch "amd64" }}CC=x86_64-w64-mingw32-gcc{{- end }} | ||
{{- end }} | ||
archives: | ||
- format: tar.gz | ||
# this name template makes the OS and Arch compatible with the results of uname. | ||
name_template: >- | ||
{{ .ProjectName }}_ | ||
{{- title .Os }}_ | ||
{{- if eq .Arch "amd64" }}x86_64 | ||
{{- else if eq .Arch "386" }}i386 | ||
{{- else }}{{ .Arch }}{{ end }} | ||
{{- if .Arm }}v{{ .Arm }}{{ end }} | ||
# use zip for windows archives | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
files: | ||
- LICENSE | ||
wrap_in_directory: true | ||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
signs: | ||
- id: apko-cosign | ||
cmd: cosign | ||
certificate: "${artifact}.crt" | ||
args: ["sign-blob", "--output-signature", "${signature}", "--output-certificate", "${certificate}", "${artifact}", "--yes"] | ||
artifacts: all |
Oops, something went wrong.