|
|
@ -3,7 +3,7 @@ name: release
|
|
|
|
on:
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
@ -14,10 +14,15 @@ jobs:
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
matrix:
|
|
|
|
platform: [ubuntu-latest]
|
|
|
|
platform: [ubuntu-latest]
|
|
|
|
go-version: [ '1.21' ]
|
|
|
|
go-version: ["1.21"]
|
|
|
|
name: Release
|
|
|
|
name: Release
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
|
|
|
|