-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (44 loc) · 1.2 KB
/
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
name: release
on:
push:
branches:
- "master"
tags:
- "v*"
jobs:
build:
name: build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install resvg
run: |
# Why Ubuntu uses legacy version of resvg?
mkdir bin
cd bin
# depName=RazrFalcon/resvg
RESVG_VERSION="v0.44.0"
wget "https://github.com/RazrFalcon/resvg/releases/download/${RESVG_VERSION}/resvg-linux-x86_64.tar.gz"
tar xf resvg-linux-x86_64.tar.gz
cd ..
- name: build
run: |
PATH="./bin/:$PATH" ./build.sh
- name: pre-release
uses: softprops/[email protected]
if: "! startsWith(github.ref, 'refs/tags/')"
with:
tag_name: "latest"
prerelease: true
name: "Development Build"
files: |
target/*
resources.tar
- name: tagged-release
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: false
files: |
target/*
resources.tar