Release v1.28.14-rke2r2-build20240924 #43
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: Push Image | |
run-name: Release ${{ github.ref_name }} | |
on: | |
release: | |
types: [published] | |
env: | |
GITHUB_ACTION_TAG: ${{ github.ref_name }} | |
jobs: | |
push-multiarch: | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: get the build-args values | |
id: get-build-args | |
run: | | |
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV" | |
echo "$(make -s log | grep GOLANG_VERSION)" >> "$GITHUB_ENV" | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: "Read secrets" | |
uses: rancher-eio/read-vault-secrets@main | |
with: | |
secrets: | | |
secret/data/github/repo/${{ github.repository }}/dockerhub/${{ github.repository_owner }}/credentials username | DOCKER_USERNAME ; | |
secret/data/github/repo/${{ github.repository }}/dockerhub/${{ github.repository_owner }}/credentials password | DOCKER_PASSWORD | |
- name: Login to Container Registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ env.DOCKER_PASSWORD }} | |
- name: Build container image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: rancher/hardened-kubernetes:${{ github.event.release.tag_name }} | |
file: Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
TAG=${{ env.TAG }} | |
GO_IMAGE=rancher/hardened-build-base:${{ env.GOLANG_VERSION }} |