-
Notifications
You must be signed in to change notification settings - Fork 3
67 lines (57 loc) · 1.59 KB
/
release.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
name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- name: Build release
run: zig build release
- name: Archive executables
run: |
mkdir -p artifacts
for binary in zig-out/*; do
tar -czvf artifacts/$(basename "$binary").tar.gz -C zig-out $(basename "$binary")
done
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: zvm-artifacts
path: artifacts/*.tar.gz
# This job will need to be modified to handle multiple artifacts
create-release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
# Download all artifacts dynamically
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: zvm-artifacts
path: artifacts/
- name: List artifacts
run: ls -la artifacts/
- name: Create and Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "artifacts/*.tar.gz"
artifactErrorsFailBuild: true
generateReleaseNotes: true
tag: ${{ github.ref }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
allowUpdates: true
token: ${{ secrets.GITHUB_TOKEN }}