mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-24 08:42:45 +00:00
87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/release.yaml
|
|
- pkg/**
|
|
- go.*
|
|
tags:
|
|
- v*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/release.yaml
|
|
- pkg/**
|
|
- go.*
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}--${{ github.ref }}
|
|
|
|
jobs:
|
|
create:
|
|
runs-on: ubuntu-slim
|
|
timeout-minutes: 10
|
|
outputs:
|
|
draft-release-name: ${{ steps.create-draft-release.outputs.draft-release-name }}
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- if: github.event_name == 'push'
|
|
id: create-draft-release
|
|
uses: int128/go-release-action/create-draft-release@9e1d6ec29fc6ffc2ba55f631baf4a73017d228e1 # v2.5.0
|
|
|
|
build:
|
|
needs: create
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- runs-on: ubuntu-latest
|
|
GOOS: linux
|
|
GOARCH: amd64
|
|
CGO_ENABLED: 0 # https://github.com/int128/kubelogin/issues/567
|
|
- runs-on: ubuntu-latest
|
|
GOOS: linux
|
|
GOARCH: arm64
|
|
- runs-on: ubuntu-latest
|
|
GOOS: linux
|
|
GOARCH: arm
|
|
- runs-on: ubuntu-latest
|
|
GOOS: linux
|
|
GOARCH: ppc64le
|
|
- runs-on: macos-latest
|
|
GOOS: darwin
|
|
GOARCH: amd64
|
|
CGO_ENABLED: 1 # https://github.com/int128/kubelogin/issues/249
|
|
- runs-on: macos-latest
|
|
GOOS: darwin
|
|
GOARCH: arm64
|
|
CGO_ENABLED: 1 # https://github.com/int128/kubelogin/issues/762
|
|
- runs-on: windows-latest
|
|
GOOS: windows
|
|
GOARCH: amd64
|
|
- runs-on: windows-latest
|
|
GOOS: windows
|
|
GOARCH: arm64
|
|
runs-on: ${{ matrix.platform.runs-on }}
|
|
env:
|
|
GOOS: ${{ matrix.platform.GOOS }}
|
|
GOARCH: ${{ matrix.platform.GOARCH }}
|
|
CGO_ENABLED: ${{ matrix.platform.CGO_ENABLED }}
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: go.sum
|
|
- run: go build -ldflags "-X main.version=$GITHUB_SHA"
|
|
- uses: int128/go-release-action@9e1d6ec29fc6ffc2ba55f631baf4a73017d228e1 # v2.5.0
|
|
with:
|
|
binary: kubelogin
|
|
release-name: ${{ needs.create.outputs.draft-release-name }}
|