Prepare v0.8.0 (#1010) #12
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: Publish official image to GitHub Container Registry | |
on: | |
push: | |
tags: ["v[0-9].[0-9].[0-9]"] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
container: ghcr.io/kedacore/keda-tools:1.22.2 | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- name: Register workspace path | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Get the version | |
id: get_version | |
run: | | |
echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v} | |
- name: Release Deployment YAML file | |
run: make release | |
env: | |
VERSION: ${{ steps.get_version.outputs.VERSION }} | |
- name: Login to GHCR | |
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 | |
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.GITHUB_TOKEN }} | |
# Server address of Docker registry. If not set then will default to Docker Hub | |
registry: ghcr.io | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 | |
- name: Publish on GitHub Container Registry | |
run: make publish-multiarch | |
env: | |
VERSION: ${{ steps.get_version.outputs.VERSION }} | |
# Get release information to determine id of the current release | |
- name: Get Release | |
id: get-release-info | |
uses: bruceadams/get-release@74c3d60f5a28f358ccf241a00c9021ea16f0569f # v1.3.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Upload deployment YAML file to GitHub release | |
- name: Upload Deployment YAML file | |
id: upload-deployment-yaml | |
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: https://uploads.github.com/repos/kedacore/http-add-on/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml | |
asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml | |
asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml | |
asset_content_type: application/x-yaml | |
# Upload CRD deployment YAML file to GitHub release | |
- name: Upload Deployment YAML file | |
id: upload-crd-deployment-yaml | |
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: https://uploads.github.com/repos/kedacore/http-add-on/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml | |
asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml | |
asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml | |
asset_content_type: application/x-yaml |