Merge pull request #1165 from wzshiming/promote/0.6 #17
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: Releases | |
on: | |
push: | |
tags: | |
- v* | |
env: | |
PUSH: 'true' | |
PRE_RELEASE: GA | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GO_VERSION: "1.22.3" | |
jobs: | |
releases: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build binary for registry.k8s.io | |
if: ${{ github.repository == 'kubernetes-sigs/kwok' }} | |
env: | |
GH_RELEASE: ${{ github.repository }} | |
IMAGE_PREFIX: registry.k8s.io/kwok | |
BINARY_PREFIX: https://github.com/${{ github.repository }}/releases/download | |
run: | | |
REF=${{ github.ref }} | |
GIT_TAG="${REF##*/}" make manifests cross-build | |
- name: Build binary for ghcr.io | |
if: ${{ github.repository != 'kubernetes-sigs/kwok' }} | |
env: | |
GH_RELEASE: ${{ github.repository }} | |
IMAGE_PREFIX: ghcr.io/${{ github.repository }} | |
BINARY_PREFIX: https://github.com/${{ github.repository }}/releases/download | |
run: | | |
REF=${{ github.ref }} | |
GIT_TAG="${REF##*/}" make manifests cross-build | |
- name: Build kwok image | |
env: | |
IMAGE_PREFIX: ghcr.io/${{ github.repository }} | |
run: | | |
REF=${{ github.ref }} | |
GIT_TAG="${REF##*/}" make cross-image | |
- name: Build cluster image | |
env: | |
IMAGE_PREFIX: ghcr.io/${{ github.repository }} | |
run: | | |
REF=${{ github.ref }} | |
GIT_TAG="${REF##*/}" make cross-cluster-image |