mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2026-05-18 13:36:11 +00:00
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- '[0-9]+.[0-9]+.x'
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
release-please:
|
|
permissions:
|
|
contents: write # for google-github-actions/release-please-action to create release commit
|
|
pull-requests: write # for google-github-actions/release-please-action to create release PR
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
releases_created: ${{ steps.release.outputs.releases_created }}
|
|
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
# Release-please creates a PR that tracks all changes
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
|
|
|
|
- uses: google-github-actions/release-please-action@e0b9d1885d92e9a93d5ce8656de60e3b806e542c # v3
|
|
id: release
|
|
with:
|
|
command: manifest
|
|
token: ${{secrets.GITHUB_TOKEN}}
|
|
default-branch: main
|
|
|
|
goreleaser:
|
|
if: needs.release-please.outputs.releases_created == 'true'
|
|
needs:
|
|
- release-please
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4
|
|
with:
|
|
go-version: '1.20'
|
|
-
|
|
name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@f82d6c1c344bcacabba2c841718984797f664a6b # v4
|
|
with:
|
|
# either 'goreleaser' (default) or 'goreleaser-pro'
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |