From 26c1522c083b032a138d864531a29f7824b7b134 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 24 Sep 2024 17:16:04 +1000 Subject: [PATCH 1/3] chore: target master push events with full name --- .github/workflows/build-binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 1d39adeae2..1e6bb5824f 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -25,7 +25,7 @@ concurrency: env: # we want to publish on "push to master" only. When we don't want to publish, we want to upload artefacts - SHOULD_PUBLISH: ${{ github.event_name == 'push' && github.ref == 'master' }} + SHOULD_PUBLISH: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} jobs: build_linux: From 18862abf59d095cd0573311aed6e4bfc13115436 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 24 Sep 2024 17:32:05 +1000 Subject: [PATCH 2/3] fix: fix the sed in CI so we build for the correct target --- .github/workflows/build-binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 1e6bb5824f..507e011783 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -77,7 +77,7 @@ jobs: # we want this to run only when on "push" to "master" if: ${{ env.SHOULD_PUBLISH == 'true' }} run: | - sed -i 's/\"target\": \\[\"deb\"\\]/\"target\": \"${{ matrix.pkg_to_build }}\"/g' package.json; yarn build-release-publish + sed -i 's/"target": \["deb"\]/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release-publish build_windows: runs-on: windows-2022 From 980554cd0291c89b9d28978f262668403a218d8c Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 30 Sep 2024 14:05:42 +1000 Subject: [PATCH 3/3] chore: bump session to 1.14.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0639684950..d5b0f2cd63 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.14.1", + "version": "1.14.2", "license": "GPL-3.0", "author": { "name": "Oxen Labs",