This repository was archived by the owner on Mar 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (56 loc) · 1.51 KB
/
release.yml
File metadata and controls
76 lines (56 loc) · 1.51 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
on:
workflow_dispatch:
push:
tags:
- v*
name: release
env:
FORCE_COLOR: 3
TERM: xterm-256color
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- uses: softprops/action-gh-release@v1
with:
draft: true
build:
name: build (${{ matrix.os }})
needs: [create-release]
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
file-name: nvm
display-name: nvm-macos
- os: ubuntu-latest
file-name: nvm
display-name: nvm-linux
- os: windows-latest
file-name: nvm.exe
display-name: nvm-win.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-task@v1
with:
repo-token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
- run: task build:release
- run: mv target/release/${{ matrix.file-name }} target/release/${{ matrix.display-name }}
- uses: softprops/action-gh-release@v1
with:
draft: true
files: target/release/${{ matrix.display-name }}