Skip to content

Commit

Permalink
fix: lkfd
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Sep 24, 2024
1 parent d4d5849 commit e4937a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ jobs:

- name: Build but do not publish ${{ matrix.pkg_to_build }}
# we want this to run always, except on "push" to "master"
if: !env.SHOULD_PUBLISH
if: ${{ !env.SHOULD_PUBLISH }}
run: |
sed -i 's/"target": \["deb"\]/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release
- name: Upload artefacts ${{ matrix.pkg_to_build }}
# we want this to run always, except on "push" to "master"
if: !env.SHOULD_PUBLISH
if: ${{ !env.SHOULD_PUBLISH }}
uses: ./actions/upload_prod_artefacts
with:
upload_prefix: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.pkg_to_build }}-others
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Build but do not publish
# we want this to run always, except on "push" to "master"
if: !env.SHOULD_PUBLISH
if: ${{ !env.SHOULD_PUBLISH }}
run: yarn build-release

- name: Upload artefacts
Expand Down Expand Up @@ -136,14 +136,14 @@ jobs:

- name: Build but do not publish
# we want this to run always, except on "push" to "master"
if: !env.SHOULD_PUBLISH
if: ${{ !env.SHOULD_PUBLISH }}
run: |
source ./build/setup-mac-certificate.sh
yarn build-release --config.mac.bundleVersion=${{ github.ref }}
- name: Upload artefacts
# we want this to run always, except on "push" to "master"
if: !env.SHOULD_PUBLISH
if: ${{ !env.SHOULD_PUBLISH }}
uses: ./actions/upload_prod_artefacts
with:
upload_prefix: ${{ runner.os }}-${{ runner.arch }}
Expand Down

0 comments on commit e4937a1

Please sign in to comment.