mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-04-20 01:26:42 +00:00
82 lines
2.6 KiB
YAML
82 lines
2.6 KiB
YAML
name: Go Release
|
|
|
|
permissions: {}
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
seccomp-generation:
|
|
name: Seccomp Generation
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# differently from the e2e workflow
|
|
# we don't need all the versions of kubernetes
|
|
# to generate the seccomp profile.
|
|
k8s-version:
|
|
- "v1.30.0"
|
|
runs-on: ubuntu-latest-8-cores
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
|
|
with:
|
|
version: v3.14.2
|
|
- name: unit tracing
|
|
run: sudo make trace-unit
|
|
- name: e2e tracing
|
|
run: sudo KIND_K8S_VERSION=${{ matrix.k8s-version }} make trace-e2e
|
|
- name: build seccomp profile
|
|
run: make seccomp
|
|
- name: upload artifact
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: capsule-seccomp
|
|
path: capsule-seccomp.json
|
|
|
|
create-release:
|
|
needs: seccomp-generation
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Go
|
|
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: Setup caches
|
|
uses: ./.github/actions/setup-caches
|
|
timeout-minutes: 5
|
|
continue-on-error: true
|
|
- uses: creekorful/goreportcard-action@1f35ced8cdac2cba28c9a2f2288a16aacfd507f9 # v1.0
|
|
- uses: anchore/sbom-action/download-syft@5f8d64469e012b8a46c74f22151e5246929a7d59
|
|
- name: Install Cosign
|
|
uses: sigstore/cosign-installer@3454372f43399081ed03b604cb2d021dabca52bb # v3.8.2
|
|
- name: download artifact
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: capsule-seccomp
|
|
path: ./capsule-seccomp.json
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
|
|
with:
|
|
version: latest
|
|
args: release --clean --timeout 90m
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|