Skip to content

Commit 8a33a68

Browse files
committed
Tag 1.9.21 release
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 85a5055 commit 8a33a68

File tree

3 files changed

+45
-7
lines changed

3 files changed

+45
-7
lines changed

.github/workflows/release.yml

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ name: release
22

33
on:
44
push:
5-
branches:
6-
- '*'
7-
pull_request:
8-
branches:
9-
- '*'
5+
106
env:
117
CACHE_VERSION: 4
128
DEBIAN_FRONTEND: noninteractive
@@ -45,6 +41,15 @@ jobs:
4541
with:
4642
name: jack2-macOS-intel-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
4743
path: PawPaw/jack2-macOS-*.tar.gz
44+
- uses: softprops/action-gh-release@v1
45+
if: startsWith(github.ref, 'refs/tags/')
46+
with:
47+
tag_name: ${{ github.ref_name }}
48+
name: ${{ github.ref_name }}
49+
draft: false
50+
prerelease: false
51+
files: |
52+
path: PawPaw/jack2-macOS-*.tar.gz
4853
4954
# macOS native universal build
5055
macos_universal:
@@ -81,6 +86,15 @@ jobs:
8186
with:
8287
name: jack2-macOS-universal-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
8388
path: PawPaw/jack2-macOS-*.tar.gz
89+
- uses: softprops/action-gh-release@v1
90+
if: startsWith(github.ref, 'refs/tags/')
91+
with:
92+
tag_name: ${{ github.ref_name }}
93+
name: ${{ github.ref_name }}
94+
draft: false
95+
prerelease: false
96+
files: |
97+
path: PawPaw/jack2-macOS-*.tar.gz
8498
8599
# linux with win32 cross-compilation
86100
win32:
@@ -130,6 +144,15 @@ jobs:
130144
with:
131145
name: jack2-win32-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
132146
path: PawPaw/jack2-win*.exe
147+
- uses: softprops/action-gh-release@v1
148+
if: startsWith(github.ref, 'refs/tags/')
149+
with:
150+
tag_name: ${{ github.ref_name }}
151+
name: ${{ github.ref_name }}
152+
draft: false
153+
prerelease: false
154+
files: |
155+
path: PawPaw/jack2-win*.exe
133156
134157
# linux with win64 cross-compilation
135158
win64:
@@ -179,3 +202,12 @@ jobs:
179202
with:
180203
name: jack2-win64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
181204
path: PawPaw/jack2-win*.exe
205+
- uses: softprops/action-gh-release@v1
206+
if: startsWith(github.ref, 'refs/tags/')
207+
with:
208+
tag_name: ${{ github.ref_name }}
209+
name: ${{ github.ref_name }}
210+
draft: false
211+
prerelease: false
212+
files: |
213+
path: PawPaw/jack2-win*.exe

PawPaw

pack-jack2-version.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
export JACK2_VERSION=84d80c0a8c4f62839995ff96ad2b00d3ffed6211
3+
export JACK2_VERSION=1abd04edab2fef8e7b5e5197dd03034358a37078
44
export QJACKCTL_VERSION=0.9.7
55

66
set -e
@@ -26,6 +26,12 @@ rm -rf ~/PawPawBuilds/builds/*/qjackctl-${QJACKCTL_VERSION}
2626
# ---------------------------------------------------------------------------------------------------------------------
2727

2828
./PawPaw/build-jack2.sh ${target}
29+
30+
# FIXME remove this on 1.9.22
31+
ln -s ~/PawPawBuilds/builds/${target}/jack2-${JACK2_VERSION} PawPaw/jack2
32+
ln -s ~/PawPawBuilds/builds/${target}/jack2-${JACK2_VERSION} ~/PawPawBuilds/builds/${target}/jack2-v1.9.21
33+
export JACK2_VERSION=v1.9.21
34+
2935
./PawPaw/pack-jack2.sh ${target}
3036

3137
# ---------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)