summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2023-05-29 23:00:23 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2023-05-29 23:00:23 +0200
commitc4f7febc1f0fac0bb68e39e62472a8a676e68eab (patch)
treecf4e9631183ad01a60ec1c5093a64ffea53f52d2
parent592c0c728e538fb57a1fbcf617fed2c0dc39085d (diff)
Upload 2.4-beta to ppa:mixxx/mixxxbetas
-rw-r--r--.github/workflows/build.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e4eb607aa8..6b1983aef6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -354,7 +354,9 @@ jobs:
if: matrix.os == 'ubuntu-22.04' && matrix.container == null
run: |
if [[ "${{ github.ref }}" == "refs/heads/main" ]] && [[ "${{ github.repository }}" == "mixxxdj/mixxx" ]]; then
- CPACK_ARGS="-D DEB_UPLOAD_PPA=ppa:mixxx/nightlies -D CPACK_DEBIAN_DEBIAN_VERSION=0ubuntu2"
+ CPACK_ARGS="-D DEB_UPLOAD_PPA=ppa:mixxx/nightlies"
+ elif [[ "${{ github.ref }}" == "refs/heads/2.4" ]] && [[ "${{ github.repository }}" == "mixxxdj/mixxx" ]]; then
+ CPACK_ARGS="-D DEB_UPLOAD_PPA=ppa:mixxx/mixxxbetas"
elif [[ "${{ github.ref }}" =~ ^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ "${{ github.repository }}" == "mixxxdj/mixxx" ]]; then
CPACK_ARGS="-D DEB_UPLOAD_PPA=ppa:mixxx/mixxx"
else