Skip to content

Commit

Permalink
Tag 1.9.21 release
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Apr 15, 2022
1 parent 85a5055 commit 8a33a68
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
42 changes: 37 additions & 5 deletions .github/workflows/release.yml
Expand Up @@ -2,11 +2,7 @@ name: release

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

env:
CACHE_VERSION: 4
DEBIAN_FRONTEND: noninteractive
Expand Down Expand Up @@ -45,6 +41,15 @@ jobs:
with:
name: jack2-macOS-intel-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
path: PawPaw/jack2-macOS-*.tar.gz
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
files: |
path: PawPaw/jack2-macOS-*.tar.gz
# macOS native universal build
macos_universal:
Expand Down Expand Up @@ -81,6 +86,15 @@ jobs:
with:
name: jack2-macOS-universal-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
path: PawPaw/jack2-macOS-*.tar.gz
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
files: |
path: PawPaw/jack2-macOS-*.tar.gz
# linux with win32 cross-compilation
win32:
Expand Down Expand Up @@ -130,6 +144,15 @@ jobs:
with:
name: jack2-win32-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
path: PawPaw/jack2-win*.exe
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
files: |
path: PawPaw/jack2-win*.exe
# linux with win64 cross-compilation
win64:
Expand Down Expand Up @@ -179,3 +202,12 @@ jobs:
with:
name: jack2-win64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
path: PawPaw/jack2-win*.exe
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
files: |
path: PawPaw/jack2-win*.exe
2 changes: 1 addition & 1 deletion PawPaw
Submodule PawPaw updated 1 files
+1 −1 pack-jack2.sh
8 changes: 7 additions & 1 deletion pack-jack2-version.sh
@@ -1,6 +1,6 @@
#!/bin/bash

export JACK2_VERSION=84d80c0a8c4f62839995ff96ad2b00d3ffed6211
export JACK2_VERSION=1abd04edab2fef8e7b5e5197dd03034358a37078
export QJACKCTL_VERSION=0.9.7

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

./PawPaw/build-jack2.sh ${target}

# FIXME remove this on 1.9.22
ln -s ~/PawPawBuilds/builds/${target}/jack2-${JACK2_VERSION} PawPaw/jack2
ln -s ~/PawPawBuilds/builds/${target}/jack2-${JACK2_VERSION} ~/PawPawBuilds/builds/${target}/jack2-v1.9.21
export JACK2_VERSION=v1.9.21

./PawPaw/pack-jack2.sh ${target}

# ---------------------------------------------------------------------------------------------------------------------

0 comments on commit 8a33a68

Please sign in to comment.