-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gh action to create release artifacts (#13)
* add gh action to create release artifacts * make upload name os and arch dependent
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: "Create draft release with binaries after tag" | ||
on: | ||
push: | ||
tags: ["v*"] | ||
permissions: | ||
contents: write # to upload the binaries to the release | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: ["linux"] | ||
arch: ["amd64", "arm64"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.20" | ||
- run: mkdir build | ||
- run: go build -trimpath -o build/lk-jwt-service_${{ matrix.os }}_${{ matrix.arch }} ./main.go | ||
env: | ||
GOOS: ${{ matrix.os }} | ||
GOARCH: ${{ matrix.arch }} | ||
- name: "Upload binary as artifact" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: binary_${{ matrix.os }}_${{ matrix.arch }} | ||
path: build/lk-jwt-service_${{ matrix.os }}_${{ matrix.arch }} | ||
|
||
create-release: | ||
needs: ["build"] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Fetch all binaries" | ||
uses: actions/download-artifact@v3 | ||
- name: "Create release" | ||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1 | ||
with: | ||
files: build/* | ||
draft: True | ||
fail_on_unmatched_files: true |