Try github release #34
Workflow file for this run
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
# Docs | |
# https://github.com/softprops/action-gh-release | |
name: Release | |
on: | |
push: | |
# branches: ["main"] | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
release: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
osname: linux | |
# artifact_name: ${{ github.event.repository.name }} | |
asset_name: ${{ github.event.repository.name }}-linux-amd64.zip | |
- os: windows-latest | |
osname: windows | |
# artifact_name: ${{ github.event.repository.name }}.exe | |
asset_name: ${{ github.event.repository.name }}-windows-amd64.zip | |
- os: macos-latest | |
osname: macosx | |
# artifact_name: ${{ github.event.repository.name }} | |
asset_name: ${{ github.event.repository.name }}-darwin-arm64.zip | |
# runs-on: ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22.2" | |
# - name: Install tools | |
# run: | | |
# sudo apt -y update | |
# sudo apt -y install make zip | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
- name: Create binaries | |
run: make build-${{ matrix.osname }} | |
# - name: Create binaries | |
# if: startsWith(github.ref, 'refs/tags/') | |
# run: make build | |
# - name: Release | |
# uses: softprops/action-gh-release@v2 | |
# if: startsWith(github.ref, 'refs/tags/') | |
# with: | |
# files: | | |
# fsync-darwin-amd64.zip | |
# fsync-darwin-arm64.zip | |
# fsync-linux-amd64.zip | |
# fsync-windows-amd64.zip | |
- name: Release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: builds/${{ matrix.asset_name }} | |
asset_name: ${{ matrix.asset_name }} | |
tag: ${{ github.ref }} | |
overwrite: true |