Skip to content

Commit

Permalink
Build targets individually
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
ab77 committed Nov 7, 2022
1 parent b23b4b3 commit b58249b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .github/actions/finalize/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,3 @@ runs:
env:
GITHUB_TOKEN: ${{ fromJSON(inputs.secrets).FLOWZONE_TOKEN }}

- name: Update release notes
if: runner.os == 'Linux'
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
token: ${{ fromJSON(inputs.secrets).FLOWZONE_TOKEN }}
4 changes: 2 additions & 2 deletions .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:
pushd ../resinci-deploy && npm ci && npm link && popd
if [ $runner_os =~ linux|macos ]]; then
if [[ $runner_os =~ linux|macos ]]; then
chmod +x "$(dirname "$(which node)")/resinci-deploy" && which resinci-deploy
fi
Expand Down Expand Up @@ -177,7 +177,7 @@ runs:
npm link electron-builder
for target in ${TARGETS}; do
electron-builder ${ELECTRON_BUILDER_OS} ${ARCHITECTURE_FLAGS} \
electron-builder ${ELECTRON_BUILDER_OS} ${target} ${ARCHITECTURE_FLAGS} \
--c.extraMetadata.analytics.sentry.token='${{ steps.sentry.outputs.dsn }}' \
--c.extraMetadata.packageType="${target}"
Expand Down

0 comments on commit b58249b

Please sign in to comment.