-
Notifications
You must be signed in to change notification settings - Fork 9
100 lines (86 loc) · 2.74 KB
/
build.yml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Build Binaries
on:
push:
tags:
- '*' # Only build on tag pushes for releases
workflow_dispatch: # Allow manual triggering of the build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
binary_name: sqlwrite-linux
- os: macos-latest
binary_name: sqlwrite-mac
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update
sudo apt-get install -y make curl libcurl4-openssl-dev
fi
- name: Build with Make
run: make
- name: Rename binary
run: |
mv sqlwrite ${{ matrix.binary_name }}
- name: Upload binary as artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.binary_name }}
path: ${{ matrix.binary_name }}
release:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download Linux artifact
uses: actions/download-artifact@v3
with:
name: sqlwrite-linux
path: .
- name: Download macOS artifact
uses: actions/download-artifact@v3
with:
name: sqlwrite-mac
path: .
- name: Delete existing release (if any)
run: |
gh release delete "${{ github.ref_name }}" -y || echo "No existing release to delete"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub 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 }}
draft: false
prerelease: false
- name: Upload Linux binary to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./sqlwrite-linux
asset_name: sqlwrite-linux
asset_content_type: application/octet-stream
- name: Upload macOS binary to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./sqlwrite-mac
asset_name: sqlwrite-mac
asset_content_type: application/octet-stream