mirror of
https://github.com/int128/kubelogin.git
synced 2026-02-14 16:39:51 +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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.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@2979cc5b15ceb7ae458e95b0a9467afc7ae25259 # v2.0.0
|
|
with:
|
|
binary: kubelogin
|
|
|
|
publish:
|
|
if: github.ref_type == 'tag'
|
|
needs:
|
|
- build
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- uses: rajatjindal/krew-release-bot@3d9faef30a82761d610544f62afddca00993eef9 # v0.0.47
|