mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-08 17:06:34 +00:00
79 lines
2.2 KiB
YAML
79 lines
2.2 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.*
|
|
|
|
jobs:
|
|
build:
|
|
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.ref_name }}'
|
|
- uses: int128/go-release-action@9e1d6ec29fc6ffc2ba55f631baf4a73017d228e1 # v2.5.0
|
|
with:
|
|
binary: kubelogin
|
|
|
|
publish:
|
|
if: github.ref_type == 'tag'
|
|
needs:
|
|
- build
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: rajatjindal/krew-release-bot@c970b8a8f6dbc2f2285a26e3ae160903b87002c3 # v0.0.51
|