-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (65 loc) · 2.3 KB
/
Copy pathrelease.yml
File metadata and controls
73 lines (65 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Go Build and Release
on:
push:
tags:
- 'v*'
jobs:
build-and-release:
runs-on: ubuntu-latest
permissions:
contents: write # This gives permission to create releases and upload assets
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.5' # Specify the Go version you want to use
- name: Build binaries
env:
GOOS: linux
GOARCH: amd64
run: |
go build -o feldspar-linux-amd64 .
GOOS=darwin GOARCH=amd64 go build -o feldspar-darwin-amd64 .
GOOS=windows GOARCH=amd64 go build -o feldspar-windows-amd64.exe .
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
body: |
Automatic release generated by GitHub Actions.
This release contains pre - built binaries for multiple platforms.
draft: false
prerelease: false
- name: Upload Linux binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./feldspar-linux-amd64
asset_name: feldspar-linux-amd64
asset_content_type: application/octet - stream
- name: Upload macOS binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./feldspar-darwin-amd64
asset_name: feldspar-darwin-amd64
asset_content_type: application/octet - stream
- name: Upload Windows binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./feldspar-windows-amd64.exe
asset_name: feldspar-windows-amd64.exe
asset_content_type: application/octet - stream