Skip to content

Commit

Permalink
update release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
2start committed Jan 16, 2024
1 parent 9d407dc commit 06e843f
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
build:
name: Build for macOS ARM
runs-on: ubuntu-latest
strategy:
matrix:
goos: [darwin]
goarch: [arm64]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21' # Specify the Go version you want to use for building

- name: Check out code
uses: actions/checkout@v3

- name: Build binary
run: |
BINARY_NAME="gptprep-${{ matrix.goos }}-${{ matrix.goarch }}"
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w" -o "${BINARY_NAME}"
- name: Archive binary
uses: actions/upload-artifact@v3
with:
name: gptprep-${{ matrix.goos }}-${{ matrix.goarch }}
path: gptprep-${{ matrix.goos }}-${{ matrix.goarch }}

release:
name: Create Release
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: artifacts

- name: List artifacts
name: Release

on:
push:
tags:
Expand Down Expand Up @@ -49,6 +98,14 @@ jobs:
- name: List artifacts
run: ls -la artifacts/

- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: artifacts/**/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ls -la artifacts/

- name: Create Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 06e843f

Please sign in to comment.