mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
6.0 KiB
YAML
150 lines
6.0 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags: [ 'v*' ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release-flux-cli:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write # needed to write releases
|
|
id-token: write # needed for keyless signing
|
|
packages: write # needed for ghcr access
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
- name: Setup Go
|
|
uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613
|
|
with:
|
|
go-version: 1.19.x
|
|
- name: Setup QEMU
|
|
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2
|
|
- name: Setup Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 # v2
|
|
- name: Setup Syft
|
|
uses: anchore/sbom-action/download-syft@06e109483e6aa305a2b2395eabae554e51530e1d # v0.13.1
|
|
- name: Setup Cosign
|
|
uses: sigstore/cosign-installer@b6757d8360bb6b9803c38b68e8cb7442baaf7eb5
|
|
- name: Setup Kustomize
|
|
uses: fluxcd/pkg//actions/kustomize@main
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: fluxcdbot
|
|
password: ${{ secrets.GHCR_TOKEN }}
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2
|
|
with:
|
|
username: fluxcdbot
|
|
password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
|
|
- name: Generate manifests
|
|
run: |
|
|
make cmd/flux/.manifests.done
|
|
./manifests/scripts/bundle.sh "" ./output manifests.tar.gz
|
|
kustomize build ./manifests/install > ./output/install.yaml
|
|
- name: Build CRDs
|
|
run: |
|
|
kustomize build manifests/crds > all-crds.yaml
|
|
- name: Generate OpenAPI JSON schemas from CRDs
|
|
uses: fluxcd/pkg//actions/crdjsonschema@main
|
|
with:
|
|
crd: all-crds.yaml
|
|
output: schemas
|
|
- name: Archive the OpenAPI JSON schemas
|
|
run: |
|
|
tar -czvf ./output/crd-schemas.tar.gz -C schemas .
|
|
- 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@b508e2e3ef3b19d4e4146d4f8fb3ba9db644a757 # v3
|
|
with:
|
|
version: latest
|
|
args: release --release-notes=output/notes.md --skip-validate
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
AUR_BOT_SSH_PRIVATE_KEY: ${{ secrets.AUR_BOT_SSH_PRIVATE_KEY }}
|
|
release-flux-manifests:
|
|
runs-on: ubuntu-latest
|
|
needs: release-flux-cli
|
|
permissions:
|
|
id-token: write
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
|
- name: Setup Kustomize
|
|
uses: fluxcd/pkg/actions/kustomize@main
|
|
- name: Setup Flux CLI
|
|
uses: ./action/
|
|
- name: Prepare
|
|
id: prep
|
|
run: |
|
|
VERSION=$(flux version --client | awk '{ print $NF }')
|
|
echo ::set-output name=VERSION::${VERSION}
|
|
- name: Login to GHCR
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: fluxcdbot
|
|
password: ${{ secrets.GHCR_TOKEN }}
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2
|
|
with:
|
|
username: fluxcdbot
|
|
password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
|
|
- name: Push manifests to GHCR
|
|
run: |
|
|
mkdir -p ./ghcr.io/flux-system
|
|
flux install --registry=ghcr.io/fluxcd \
|
|
--components-extra=image-reflector-controller,image-automation-controller \
|
|
--export > ./ghcr.io/flux-system/gotk-components.yaml
|
|
|
|
cd ./ghcr.io && flux push artifact \
|
|
oci://ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }} \
|
|
--path="./flux-system" \
|
|
--source=${{ github.repositoryUrl }} \
|
|
--revision="${{ github.ref_name }}/${{ github.sha }}"
|
|
- name: Push manifests to DockerHub
|
|
run: |
|
|
mkdir -p ./docker.io/flux-system
|
|
flux install --registry=docker.io/fluxcd \
|
|
--components-extra=image-reflector-controller,image-automation-controller \
|
|
--export > ./docker.io/flux-system/gotk-components.yaml
|
|
|
|
cd ./docker.io && flux push artifact \
|
|
oci://docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }} \
|
|
--path="./flux-system" \
|
|
--source=${{ github.repositoryUrl }} \
|
|
--revision="${{ github.ref_name }}/${{ github.sha }}"
|
|
- uses: sigstore/cosign-installer@b6757d8360bb6b9803c38b68e8cb7442baaf7eb5 # v2.8.0
|
|
- name: Sign manifests
|
|
env:
|
|
COSIGN_EXPERIMENTAL: 1
|
|
run: |
|
|
cosign sign ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }}
|
|
cosign sign docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }}
|
|
- name: Tag manifests
|
|
run: |
|
|
flux tag artifact oci://ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }} \
|
|
--tag latest
|
|
|
|
flux tag artifact oci://docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.VERSION }} \
|
|
--tag latest
|