Update dependencies and build with Go 1.22 #33
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 | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
permissions: | |
actions: read | |
checks: write | |
contents: read | |
issues: read | |
packages: write | |
pull-requests: read | |
repository-projects: read | |
statuses: read | |
runs-on: actuated-8cpu-12gb | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- name: Get TAG | |
id: get_tag | |
run: echo TAG=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV | |
- name: Get Repo Owner | |
id: get_repo_owner | |
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to container Registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ghcr.io | |
- name: Release build | |
id: release_build | |
uses: docker/build-push-action@v5 | |
with: | |
outputs: "type=registry,push=true" | |
platforms: linux/amd64,linux/arm/v6,linux/arm64 | |
build-args: | | |
Version=${{ env.TAG }} | |
GitCommit=${{ github.sha }} | |
tags: | | |
ghcr.io/${{ env.REPO_OWNER }}/inlets-operator:${{ github.sha }} | |
ghcr.io/${{ env.REPO_OWNER }}/inlets-operator:${{ env.TAG }} | |
ghcr.io/${{ env.REPO_OWNER }}/inlets-operator:latest |