Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Dec 4, 2024
2 parents a5dd7f9 + 3cadc54 commit a501188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a501188

Please sign in to comment.