-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (61 loc) · 1.84 KB
/
Copy pathrelease-stable.yml
File metadata and controls
68 lines (61 loc) · 1.84 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
name: Create Stable Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
name: Create Stable Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Setup release directory
run: |
mkdir -p release/bin
mkdir release/bin/windows
mkdir release/bin/linux
mkdir release/bin/macos
- name: Build windows version
run: |
cd cmd/readoelf
GOOS=windows go build -o ../../release/bin/windows/readoelf.exe
- name: Build linux version
run: |
cd cmd/readoelf
go build -o ../../release/bin/linux/readoelf
- name: Build macOS version
run: |
cd cmd/readoelf
GOOS=darwin go build -o ../../release/bin/macos/readoelf
- name: Create tarball
run: |
cd release
tar -czvf binaries.tar.gz bin/*
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Automated build.
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./release/binaries.tar.gz
asset_name: binaries.tar.gz
asset_content_type: application/gzip