-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from cpanato/update-release
revamp release job, cleanups and add snapshot job
- Loading branch information
Showing
6 changed files
with
154 additions
and
47 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 |
---|---|---|
|
@@ -18,13 +18,8 @@ jobs: | |
packages: write # needed for pushing the images to ghcr.io | ||
|
||
env: | ||
GO111MODULE: on | ||
COSIGN_YES: "true" | ||
|
||
outputs: | ||
hashes: ${{ steps.hash.outputs.hashes }} | ||
tag_name: ${{ steps.tag.outputs.tag_name }} | ||
|
||
steps: | ||
- name: Check out code onto GOPATH | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
@@ -37,13 +32,10 @@ jobs: | |
- name: Install cosign | ||
uses: sigstore/cosign-installer@1fc5bd396d372bee37d608f955b336615edf79c8 # v3.2.0 | ||
|
||
- uses: ko-build/setup-ko@ace48d793556083a76f1e3e6068850c1f4a369aa # v0.6 | ||
with: | ||
version: v0.14.1 | ||
- name: Install bom | ||
uses: puerco/release-actions/setup-bom@dd08496c83441d6477114cc0555b96d404dacff7 # v0.1.2 | ||
|
||
- name: Get TAG | ||
id: get_tag | ||
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | ||
- uses: ko-build/setup-ko@ace48d793556083a76f1e3e6068850c1f4a369aa # v0.6 | ||
|
||
- name: Set LDFLAGS | ||
id: ldflags | ||
|
@@ -52,11 +44,7 @@ jobs: | |
goflags=$(ldflags) | ||
echo "GO_FLAGS="${goflags}"" >> "$GITHUB_ENV" | ||
- name: Log into ghcr.io | ||
run: echo ${{ secrets.GITHUB_TOKEN }} | ko login ghcr.io -u ${{ github.repository_owner }} --password-stdin | ||
|
||
- name: Run GoReleaser | ||
id: run-goreleaser | ||
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 | ||
with: | ||
version: latest | ||
|
@@ -65,31 +53,45 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
LDFLAGS: ${{ env.GO_FLAGS }} | ||
|
||
- name: Generate subject | ||
id: hash | ||
env: | ||
ARTIFACTS: "${{ steps.run-goreleaser.outputs.artifacts }}" | ||
run: | | ||
set -euo pipefail | ||
checksum_file=$(echo "$ARTIFACTS" | jq -r '.[] | select (.type=="Checksum") | .path') | ||
echo "hashes=$(cat $checksum_file | base64 -w0)" >> "$GITHUB_OUTPUT" | ||
- name: Log into ghcr.io | ||
run: echo ${{ secrets.GITHUB_TOKEN }} | ko login ghcr.io -u ${{ github.repository_owner }} --password-stdin | ||
|
||
- name: build images | ||
run: make build-sign-release-images || true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
provenance: | ||
attestation: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
needs: | ||
- release | ||
|
||
permissions: | ||
actions: read # To read the workflow path. | ||
id-token: write # To sign the provenance. | ||
contents: write # To add assets to a release. | ||
|
||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
base64-subjects: "${{ needs.release.outputs.hashes }}" | ||
upload-assets: true # upload to a new release | ||
upload-tag-name: "${{ needs.release.outputs.tag_name }}" | ||
steps: | ||
- name: Check out code onto GOPATH | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Set tag output | ||
id: tag | ||
run: echo "tag_name=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Install tejolote | ||
uses: puerco/release-actions/setup-tejolote@dd08496c83441d6477114cc0555b96d404dacff7 # v0.1.2 | ||
|
||
- run: | | ||
tejolote attest --artifacts github://openvex/vexctl/${{ steps.tag.outputs.tag_name }} github://openvex/vexctl/"${GITHUB_RUN_ID}" --output vexctl.intoto.json --sign | ||
- name: Release | ||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 | ||
with: | ||
files: vexctl.intoto.json | ||
tag_name: "${{ steps.tag.outputs.tag_name }}" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
env: | ||
GITHUB_REPOSITORY: openvex/vexctl |
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,38 @@ | ||
# Copyright 2023 The OpenVEX Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Snapshot | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
|
||
jobs: | ||
snapshot: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out code onto GOPATH | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | ||
with: | ||
go-version: '1.21' | ||
check-latest: true | ||
|
||
- name: Install GoReleaser | ||
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 | ||
with: | ||
install-only: true | ||
|
||
- name: Install bom | ||
uses: puerco/release-actions/setup-bom@dd08496c83441d6477114cc0555b96d404dacff7 # v0.1.2 | ||
|
||
- name: Run Snapshot | ||
run: make snapshot | ||
|
||
- name: check binary | ||
run: | | ||
./dist/vexctl-linux-amd64 version |
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
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
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,51 @@ | ||
# Copyright 2023 The OpenVEX Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
--- | ||
namespace: https://openvex/vexctl | ||
license: Apache-2.0 | ||
name: vexctl | ||
creator: | ||
person: The OpenVEX Authors | ||
tool: vexctl | ||
|
||
artifacts: | ||
- type: file | ||
source: vexctl-windows-amd64.exe | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-darwin-amd64 | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-darwin-arm64 | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-linux-amd64 | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-linux-arm | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-linux-arm64 | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-linux-ppc64le | ||
license: Apache-2.0 | ||
gomodules: true | ||
|
||
- type: file | ||
source: vexctl-linux-s390x | ||
license: Apache-2.0 | ||
gomodules: true |
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