Skip to content

Commit

Permalink
Fix for shortcut keys to wordAlignment tool. replaced mac x64 build w…
Browse files Browse the repository at this point in the history
…ith arm64 build
  • Loading branch information
PhotoNomad0 committed Dec 5, 2024
1 parent 71d323f commit 8fc97cc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -470,22 +470,22 @@ jobs:
echo "Building $APP_VERSION-$HASH"
npm run build-macos
# x64
- name: Set x64 MAX artifact name
run: echo "ARTIFACT_X64=$(echo "$APP_NAME-macos-x64-$APP_VERSION-MAX-$HASH.dmg")" >> $GITHUB_ENV
# arm64
- name: Set arm64 MAX artifact name
run: echo "ARTIFACT_ARM64=$(echo "$APP_NAME-macos-arm64-$APP_VERSION-MAX-$HASH.dmg")" >> $GITHUB_ENV

- name: Set x64 LITE artifact name
- name: Set arm64 LITE artifact name
if: ${{ env.TRIM == '1' }}
run: echo "ARTIFACT_X64=$(echo "$APP_NAME-macos-x64-$APP_VERSION-LITE-$HASH.dmg")" >> $GITHUB_ENV
run: echo "ARTIFACT_ARM64=$(echo "$APP_NAME-macos-arm64-$APP_VERSION-LITE-$HASH.dmg")" >> $GITHUB_ENV

- name: bundle x64 macOS
run: ./node_modules/.bin/gulp release-macos --out=artifacts/x64/$ARTIFACT_X64
- name: bundle arm64 macOS
run: ./node_modules/.bin/gulp release-macos-arm64 --out=artifacts/arm64/$ARTIFACT_ARM64

- uses: actions/upload-artifact@v4
name: Upload x64 artifacts
name: Upload arm64 artifacts
with:
name: ${{ env.ARTIFACT_X64 }}
path: artifacts/x64/
name: ${{ env.ARTIFACT_ARM64 }}
path: artifacts/arm64/

# universal build
- name: Set universal MAX artifact name
Expand Down
2 changes: 1 addition & 1 deletion src/tC_apps/wordAlignment
Submodule wordAlignment updated 0 files

0 comments on commit 8fc97cc

Please sign in to comment.