-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (54 loc) · 1.46 KB
/
create-draft-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: Create draft release
on:
workflow_dispatch:
env:
# https://github.com/cli/cli/issues/9514#issuecomment-2311517523
GH_TOKEN: ${{ secrets.TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: "0.13.0"
- name: Build application
run: |
zig build -Dall-targets
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: releases
path: zig-out/
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Create tarballs
run: |
mkdir -p tarballs
for dir in artifacts/*; do
if [ -d "$dir" ]; then
tar -czf "tarballs/$(basename "$dir").tar.gz" -C "$dir" .
fi
done
- name: gh log
run: |
gh --version
gh auth status
- name: Create release
run: |
gh release create ${{ github.ref_name }} tarballs/* \
--title "Release ${{ github.ref_name }}" \
--notes "Automated release with build artifacts." \
--draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}