-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (90 loc) · 2.73 KB
/
release.yml
File metadata and controls
104 lines (90 loc) · 2.73 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
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
101
102
103
104
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
tag:
description: "Tag to release (e.g. v0.1.0)"
required: true
permissions:
contents: write
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: build (${{ matrix.target }})
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
archive: tar.gz
- os: macos-latest
target: x86_64-apple-darwin
archive: tar.gz
- os: macos-latest
target: aarch64-apple-darwin
archive: tar.gz
- os: windows-latest
target: x86_64-pc-windows-msvc
archive: zip
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
key: release-${{ matrix.target }}
- name: Build release binaries
run: cargo build --release --target ${{ matrix.target }} --bin task-journal --bin task-journal-mcp
- name: Package (Unix tar.gz)
if: matrix.archive == 'tar.gz'
shell: bash
run: |
mkdir -p dist
cd target/${{ matrix.target }}/release
tar czvf ../../../dist/task-journal-${{ github.ref_name }}-${{ matrix.target }}.tar.gz task-journal task-journal-mcp
- name: Package (Windows zip)
if: matrix.archive == 'zip'
shell: pwsh
run: |
New-Item -ItemType Directory -Force -Path dist
$bin = "target/${{ matrix.target }}/release"
Compress-Archive -Path "$bin/task-journal.exe","$bin/task-journal-mcp.exe" -DestinationPath "dist/task-journal-${{ github.ref_name }}-${{ matrix.target }}.zip"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: task-journal-${{ matrix.target }}
path: dist/*
release:
name: GitHub Release
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Compute checksums
run: |
cd dist
ls -la
sha256sum * > checksums.txt || shasum -a 256 * > checksums.txt
cat checksums.txt
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: |
dist/*
draft: false
prerelease: ${{ contains(github.ref_name, '-') }}
generate_release_notes: true