15618d1187
* fix: update name template in goreleaser * fix: add arm version * fix: space * fix: --clean --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
name: release
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
env:
|
|
GO_VERSION: 1.18
|
|
|
|
jobs:
|
|
release:
|
|
name: release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
check-latest: true
|
|
- uses: actions/cache@v3
|
|
if: ${{ !env.ACT }}
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
- name: GoReleaser
|
|
uses: goreleaser/goreleaser-action@v4
|
|
with:
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
|
|
- name: Chocolatey
|
|
uses: ./.github/actions/choco
|
|
with:
|
|
version: ${{ github.ref }}
|
|
apiKey: ${{ secrets.CHOCO_APIKEY }}
|
|
push: true
|
|
- name: GitHub CLI extension
|
|
uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
|
|
script: |
|
|
const mainRef = (await github.rest.git.getRef({
|
|
owner: 'nektos',
|
|
repo: 'gh-act',
|
|
ref: 'heads/main',
|
|
})).data;
|
|
console.log(mainRef);
|
|
github.rest.git.createRef({
|
|
owner: 'nektos',
|
|
repo: 'gh-act',
|
|
ref: context.ref,
|
|
sha: mainRef.object.sha,
|
|
});
|
|
winget:
|
|
needs: release
|
|
runs-on: windows-latest # Action can only run on Windows
|
|
steps:
|
|
- uses: vedantmgoyal2009/winget-releaser@v2
|
|
with:
|
|
identifier: nektos.act
|
|
installers-regex: '_Windows_\w+\.zip$'
|
|
token: ${{ secrets.WINGET_TOKEN }}
|