-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (95 loc) · 3.03 KB
/
release.yaml
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
105
106
name: Release
on:
push:
tags: ["v*"]
jobs:
create-release:
name: Create Release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
build:
needs: ["create-release"]
strategy:
fail-fast: false
matrix:
# https://doc.rust-lang.org/rustc/platform-support.html
# We build all the tier-1 targets at the link above. Should users need a less common target, they can always build it themselves.
include:
- label: 64-bit-windows
target: x86_64-pc-windows-msvc
runs-on: windows-latest
- label: 32-bit-windows
target: i686-pc-windows-msvc
runs-on: windows-latest
- label: 64-bit-linux
target: x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
- label: 32-bit-linux
target: i686-unknown-linux-gnu
runs-on: ubuntu-latest
- label: arm64-linux
target: aarch64-unknown-linux-gnu
runs-on: ubuntu-latest
- label: 64-bit-macos
target: x86_64-apple-darwin
runs-on: macos-latest
name: Build (${{ matrix.target }})
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
profile: minimal
- name: Build Release
run: cargo build --release --locked --verbose
env:
CARGO_TARGET_DIR: output
- name: Create Release Archive
shell: bash
run: |
mkdir staging
if [ "${{ matrix.runs-on }}" = "windows-latest" ]; then
cp "output/release/fsyaml.exe" staging/
cd staging
7z a ../release.zip *
else
cp "output/release/fsyaml" staging/
cd staging
zip ../release.zip *
fi
- name: Prepare Asset Name
shell: bash
run: |
echo "ASSET_NAME=fsyaml-${{ github.ref_name }}-${{ matrix.label }}-${{ matrix.target }}" >> $GITHUB_ENV
- name: Upload Archive to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: release.zip
asset_name: ${{ env.ASSET_NAME }}.zip
asset_content_type: application/octet-stream
- name: Upload Archive as Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ASSET_NAME }}.zip
path: release.zip