-
Notifications
You must be signed in to change notification settings - Fork 54
44 lines (39 loc) · 1.28 KB
/
release-bin-manual.yml
File metadata and controls
44 lines (39 loc) · 1.28 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
on: workflow_dispatch
# test building release binaries on various platforms (run manually from the Github web UI)
name: release-bin-manual
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: taiki-e/create-gh-release-action@v1.11.0
with:
changelog: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
strategy:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: universal-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-gnu
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install protobuf compiler
run: sudo apt-get update && sudo apt-get install protobuf-compiler
- uses: actions/checkout@v6
- uses: taiki-e/upload-rust-binary-action@v1.30.2
with:
bin: dash-mpd-cli
include: LICENSE-MIT,README.md,CHANGELOG.md
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}