Merge pull request #247 from joelsmith/kedamain #35
Workflow file for this run
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
name: release-build | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Push Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
id-token: write # needed for signing the images with GitHub OIDC Token **not production ready** | |
container: ghcr.io/kedacore/keda-tools:1.23.3 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
# Username used to log in to a Docker registry. If not set then no login will occur | |
username: ${{ github.repository_owner }} | |
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur | |
password: ${{ secrets.GHCR_AUTH_PAT }} | |
# Server address of Docker registry. If not set then will default to Docker Hub | |
registry: ghcr.io | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v} | |
- name: Publish KEDA images on GitHub Container Registry | |
run: make publish | |
env: | |
VERSION: ${{ steps.get_version.outputs.VERSION }} | |
# https://github.com/sigstore/cosign-installer | |
- name: Install Cosign | |
uses: sigstore/cosign-installer@v3 | |
- name: Check Cosign install! | |
run: cosign version | |
- name: Sign KEDA images published on GitHub Container Registry | |
# This step uses the identity token to provision an ephemeral certificate | |
# against the sigstore community Fulcio instance. | |
run: make sign-images | |
env: | |
VERSION: ${{ steps.get_version.outputs.VERSION }} |