Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
flux2
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
fluxcd
flux2
Commits
10046187
Unverified
Commit
10046187
authored
3 years ago
by
Stefan Prodan
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2301 from fluxcd/cosign
Sign the release artifacts checksums and images
parents
8a6771c9
a402461f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/release.yaml
+23
-21
23 additions, 21 deletions
.github/workflows/release.yaml
.goreleaser.yml
+38
-6
38 additions, 6 deletions
.goreleaser.yml
with
61 additions
and
27 deletions
.github/workflows/release.yaml
+
23
−
21
View file @
10046187
...
...
@@ -4,6 +4,11 @@ on:
push
:
tags
:
[
'
v*'
]
permissions
:
contents
:
write
# needed to write releases
id-token
:
write
# needed for keyless signing
packages
:
write
# needed for ghcr access
jobs
:
goreleaser
:
runs-on
:
ubuntu-latest
...
...
@@ -18,13 +23,15 @@ jobs:
go-version
:
1.17.x
-
name
:
Setup QEMU
uses
:
docker/setup-qemu-action@v1
with
:
platforms
:
all
-
name
:
Setup Docker Buildx
id
:
buildx
uses
:
docker/setup-buildx-action@v1
with
:
buildkitd-flags
:
"
--debug"
-
name
:
Setup Syft
uses
:
anchore/sbom-action/download-syft@v0
-
name
:
Setup Cosign
uses
:
sigstore/cosign-installer@main
-
name
:
Setup Kustomize
uses
:
fluxcd/pkg//actions/kustomize@main
-
name
:
Login to GitHub Container Registry
uses
:
docker/login-action@v1
with
:
...
...
@@ -36,18 +43,6 @@ jobs:
with
:
username
:
fluxcdbot
password
:
${{ secrets.DOCKER_FLUXCD_PASSWORD }}
-
name
:
Download release notes utility
env
:
GH_REL_URL
:
https://github.com/buchanae/github-release-notes/releases/download/0.2.0/github-release-notes-linux-amd64-0.2.0.tar.gz
run
:
cd /tmp && curl -sSL ${GH_REL_URL} | tar xz && sudo mv github-release-notes /usr/local/bin/
-
name
:
Generate release notes
run
:
|
echo 'CHANGELOG' > /tmp/release.txt
github-release-notes -org fluxcd -repo toolkit -since-latest-release -include-author >> /tmp/release.txt
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Setup Kustomize
uses
:
fluxcd/pkg//actions/kustomize@main
-
name
:
Generate manifests
run
:
|
make cmd/flux/.manifests.done
...
...
@@ -66,15 +61,22 @@ jobs:
-
name
:
Archive the OpenAPI JSON schemas
run
:
|
tar -czvf ./output/crd-schemas.tar.gz -C schemas .
-
name
:
Setup Syft
uses
:
fluxcd/pkg//actions/sbom@main
with
:
version
:
"
v0.35.1"
-
name
:
Download release notes utility
env
:
GH_REL_URL
:
https://github.com/buchanae/github-release-notes/releases/download/0.2.0/github-release-notes-linux-amd64-0.2.0.tar.gz
run
:
cd /tmp && curl -sSL ${GH_REL_URL} | tar xz && sudo mv github-release-notes /usr/local/bin/
-
name
:
Generate release notes
run
:
|
$NOTES="./output/notes.md"
echo '## CLI Changelog' > ${$NOTES}
github-release-notes -org fluxcd -repo flux2 -since-latest-release -include-author >> ${$NOTES}
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Run GoReleaser
uses
:
goreleaser/goreleaser-action@v1
with
:
version
:
latest
args
:
release --release-notes=
/tmp/release.txt
--skip-validate
args
:
release --release-notes=
output/notes.md
--skip-validate
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TAP_GITHUB_TOKEN
:
${{ secrets.BOT_GITHUB_TOKEN }}
...
...
This diff is collapsed.
Click to expand it.
.goreleaser.yml
+
38
−
6
View file @
10046187
...
...
@@ -40,8 +40,36 @@ archives:
format
:
zip
files
:
-
none*
source
:
enabled
:
true
name_template
:
'
{{
.ProjectName
}}_{{
.Version
}}_source_code'
sboms
:
-
artifacts
:
archive
-
id
:
source
artifacts
:
source
documents
:
-
"
{{
.ProjectName
}}_{{
.Version
}}_sbom.spdx.json"
release
:
extra_files
:
-
glob
:
output/crd-schemas.tar.gz
-
glob
:
output/manifests.tar.gz
-
glob
:
output/install.yaml
checksum
:
extra_files
:
-
glob
:
output/crd-schemas.tar.gz
-
glob
:
output/manifests.tar.gz
-
glob
:
output/install.yaml
signs
:
-
cmd
:
cosign
env
:
-
COSIGN_EXPERIMENTAL=1
certificate
:
'
${artifact}.pem'
args
:
-
sign-blob
-
'
--output-certificate=${certificate}'
-
'
--output-signature=${signature}'
-
'
${artifact}'
artifacts
:
checksum
output
:
true
brews
:
-
name
:
flux
tap
:
...
...
@@ -80,11 +108,6 @@ publishers:
-
AUR_BOT_SSH_PRIVATE_KEY={{ .Env.AUR_BOT_SSH_PRIVATE_KEY }}
cmd
:
|
.github/aur/flux-go/publish.sh {{ .Version }}
release
:
extra_files
:
-
glob
:
./output/crd-schemas.tar.gz
-
glob
:
./output/manifests.tar.gz
-
glob
:
./output/install.yaml
dockers
:
-
image_templates
:
-
'
fluxcd/flux-cli:{{
.Tag
}}-amd64'
...
...
@@ -146,3 +169,12 @@ docker_manifests:
-
'
ghcr.io/fluxcd/flux-cli:{{
.Tag
}}-amd64'
-
'
ghcr.io/fluxcd/flux-cli:{{
.Tag
}}-arm64'
-
'
ghcr.io/fluxcd/flux-cli:{{
.Tag
}}-arm'
docker_signs
:
-
cmd
:
cosign
env
:
-
COSIGN_EXPERIMENTAL=1
args
:
-
sign
-
'
${artifact}'
artifacts
:
all
output
:
true
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment