2023-02-24 18:56:49 +01:00
|
|
|
name: SLSA Client Releaser
|
2022-04-09 05:59:24 +02:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2022-04-09 06:52:22 +02:00
|
|
|
push:
|
2023-11-04 06:09:54 +01:00
|
|
|
branches: [ master ]
|
2022-04-09 06:52:22 +02:00
|
|
|
tags:
|
|
|
|
- "*"
|
2022-04-09 05:59:24 +02:00
|
|
|
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# ldflags to embed the commit hash in the binary
|
|
|
|
args:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
ldflags: ${{ steps.ldflags.outputs.value }}
|
|
|
|
steps:
|
|
|
|
- id: checkout
|
|
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.3.4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- id: ldflags
|
|
|
|
run: |
|
2022-04-09 07:56:44 +02:00
|
|
|
echo "::set-output name=value::$(./scripts/client-ldflags)"
|
2022-04-09 06:42:19 +02:00
|
|
|
|
2022-05-28 09:01:38 +02:00
|
|
|
# Trusted builders
|
|
|
|
build-linux-amd64:
|
2022-04-09 05:59:24 +02:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
2022-05-28 08:30:49 +02:00
|
|
|
contents: write
|
2022-10-31 07:27:56 +01:00
|
|
|
actions: read
|
2022-04-09 05:59:24 +02:00
|
|
|
needs: args
|
2022-10-31 22:19:26 +01:00
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
2022-04-09 05:59:24 +02:00
|
|
|
with:
|
2022-11-05 04:57:28 +01:00
|
|
|
config-file: .github/slsa/.slsa-goreleaser-linux-amd64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2022-11-05 04:57:28 +01:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2022-12-12 05:39:45 +01:00
|
|
|
build-linux-arm64:
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
|
|
|
actions: read
|
|
|
|
needs: args
|
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
|
|
|
with:
|
|
|
|
config-file: .github/slsa/.slsa-goreleaser-linux-arm64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2022-12-12 05:39:45 +01:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2023-02-19 07:00:39 +01:00
|
|
|
build-linux-arm7:
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
|
|
|
actions: read
|
|
|
|
needs: args
|
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
|
|
|
with:
|
|
|
|
config-file: .github/slsa/.slsa-goreleaser-linux-arm7.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2023-02-19 07:00:39 +01:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2022-11-05 04:57:28 +01:00
|
|
|
build-freebsd-amd64:
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
|
|
|
actions: read
|
|
|
|
needs: args
|
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
|
|
|
with:
|
|
|
|
config-file: .github/slsa/.slsa-goreleaser-freebsd-amd64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2022-11-05 04:57:28 +01:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2023-09-20 03:54:04 +02:00
|
|
|
build-netbsd-amd64:
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
|
|
|
actions: read
|
|
|
|
needs: args
|
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
|
|
|
with:
|
|
|
|
config-file: .github/slsa/.slsa-goreleaser-netbsd-amd64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2023-09-20 03:54:04 +02:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2022-05-28 18:29:56 +02:00
|
|
|
build-darwin-amd64:
|
2022-05-28 09:01:38 +02:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
2022-10-31 07:27:56 +01:00
|
|
|
actions: read
|
2022-05-28 18:34:53 +02:00
|
|
|
needs:
|
|
|
|
- args
|
2022-10-31 22:04:01 +01:00
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
2022-05-28 09:01:38 +02:00
|
|
|
with:
|
2022-11-05 04:57:28 +01:00
|
|
|
config-file: .github/slsa/.slsa-goreleaser-darwin-amd64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2022-05-28 09:01:38 +02:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
2022-10-02 00:14:51 +02:00
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2022-05-28 09:01:38 +02:00
|
|
|
build-darwin-arm64:
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
2022-10-31 07:27:56 +01:00
|
|
|
actions: read
|
2022-05-28 18:34:53 +02:00
|
|
|
needs:
|
|
|
|
- args
|
2022-10-31 22:04:01 +01:00
|
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.2.1
|
2022-05-28 09:01:38 +02:00
|
|
|
with:
|
2022-11-05 04:57:28 +01:00
|
|
|
config-file: .github/slsa/.slsa-goreleaser-darwin-arm64.yml
|
2023-10-02 03:00:58 +02:00
|
|
|
go-version: 1.21
|
2022-05-28 08:28:01 +02:00
|
|
|
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
|
2022-10-02 00:14:51 +02:00
|
|
|
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
|
2022-05-24 03:22:03 +02:00
|
|
|
|
2022-05-28 09:01:38 +02:00
|
|
|
# Sign the binaries and upload the signed binaries
|
2022-05-24 03:22:03 +02:00
|
|
|
macos_signer:
|
|
|
|
runs-on: macos-11.0
|
2022-05-24 17:46:24 +02:00
|
|
|
needs:
|
2023-11-04 06:16:11 +01:00
|
|
|
- build-darwin-amd64
|
|
|
|
- build-darwin-arm64
|
2022-05-27 06:42:09 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2022-04-09 05:59:24 +02:00
|
|
|
steps:
|
2023-11-04 06:18:24 +01:00
|
|
|
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-arm64
|
|
|
|
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-amd64
|
2022-05-24 03:22:03 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Download and sign the latest executables
|
|
|
|
env:
|
|
|
|
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
|
|
|
|
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
|
|
|
|
run: |
|
2022-05-24 08:25:12 +02:00
|
|
|
export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
|
2022-05-24 08:31:57 +02:00
|
|
|
pip3 install requests
|
2022-05-27 06:57:16 +02:00
|
|
|
brew install md5sha1sum
|
2023-11-04 07:25:57 +01:00
|
|
|
pwd
|
2022-05-24 08:25:12 +02:00
|
|
|
python3 scripts/actions-sign.py
|
2023-11-04 06:31:43 +01:00
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-arm64
|
2023-11-04 06:42:52 +01:00
|
|
|
path: hishtory-darwin-arm64
|
2023-11-04 06:31:43 +01:00
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-amd64
|
2023-11-04 06:42:52 +01:00
|
|
|
path: hishtory-darwin-amd64
|
2023-11-04 06:31:43 +01:00
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-arm64-unsigned
|
2023-11-04 06:42:52 +01:00
|
|
|
path: hishtory-darwin-arm64-unsigned
|
2023-11-04 06:31:43 +01:00
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: hishtory-darwin-amd64-unsigned
|
2023-11-04 06:42:52 +01:00
|
|
|
path: hishtory-darwin-amd64-unsigned
|
2022-04-09 05:59:24 +02:00
|
|
|
- name: Release
|
2022-05-24 03:22:03 +02:00
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
2022-04-09 05:59:24 +02:00
|
|
|
with:
|
|
|
|
files: |
|
2022-05-25 07:26:24 +02:00
|
|
|
hishtory-darwin-arm64
|
2022-05-27 07:24:56 +02:00
|
|
|
hishtory-darwin-arm64-unsigned
|
2022-05-25 07:26:24 +02:00
|
|
|
hishtory-darwin-amd64
|
2022-05-27 08:09:00 +02:00
|
|
|
hishtory-darwin-amd64-unsigned
|
2022-05-28 07:48:13 +02:00
|
|
|
- name: Trigger the backend API service so it knows a release is finished
|
|
|
|
run: |
|
|
|
|
curl https://api.hishtory.dev/api/v1/trigger-cron
|
2022-05-24 03:22:03 +02:00
|
|
|
|
2023-11-04 06:09:54 +01:00
|
|
|
# Validate the signed binaries
|
|
|
|
validate:
|
2022-05-24 08:25:12 +02:00
|
|
|
permissions:
|
2023-11-04 06:09:54 +01:00
|
|
|
contents: read
|
2022-05-24 08:25:12 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
2022-05-28 09:01:38 +02:00
|
|
|
- build-linux-amd64
|
2022-05-28 18:29:56 +02:00
|
|
|
- build-darwin-amd64
|
2022-05-28 09:01:38 +02:00
|
|
|
- build-darwin-arm64
|
2023-11-04 06:16:11 +01:00
|
|
|
- macos_signer
|
2022-05-24 08:25:12 +02:00
|
|
|
steps:
|
2023-11-04 17:51:58 +01:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 1.21
|
2022-05-24 08:25:12 +02:00
|
|
|
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
with:
|
2022-05-28 09:01:38 +02:00
|
|
|
name: hishtory-linux-amd64
|
|
|
|
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
with:
|
|
|
|
name: hishtory-linux-amd64.intoto.jsonl
|
2023-11-04 07:24:27 +01:00
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-amd64
|
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-amd64.intoto.jsonl
|
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-arm64
|
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-arm64.intoto.jsonl
|
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-arm64-unsigned
|
|
|
|
# - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
|
|
|
|
# with:
|
|
|
|
# name: hishtory-darwin-amd64-unsigned
|
2023-11-04 06:09:54 +01:00
|
|
|
- name: Validate Release
|
|
|
|
run: |
|
2023-11-05 08:55:01 +01:00
|
|
|
go build; ./hishtory install
|
|
|
|
# curl https://hishtory.dev/install.py | python3 -
|
|
|
|
./hishtory validate-binary v0.`cat VERSION` hishtory-linux-amd64 hishtory-linux-amd64.intoto.jsonl
|
2023-11-04 07:24:27 +01:00
|
|
|
# hishtory validate-binary v0.`cat VERSION` hishtory-linux-amd64 hishtory-linux-amd64.intoto.jsonl
|
2023-11-04 06:09:54 +01:00
|
|
|
# TODO: Validate other binaries here
|
|
|
|
|