Skip to content

Commit

Permalink
using absolute path for mac .dmg signing
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaribsin committed Jul 28, 2024
1 parent 3949a20 commit aff7624
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
node-version: 20
cache: yarn

- name: Read version from package.json
id: get_version
run: |
VERSION=$(node -p "require('./package.json').version")
echo "version=$VERSION" >> $GITHUB_ENV
- name: Install dependencies
run: yarn install --frozen-lockfile

Expand All @@ -57,7 +63,7 @@ jobs:
if: matrix.platform == 'osx'
uses: indygreg/apple-code-sign-action@v1
with:
input_path: dist/electron/Packaged/*.dmg
input_path: dist/electron/Packaged/Drehmal.Installer-${{ env.version }}-arm64.dmg

- name: Create new release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit aff7624

Please sign in to comment.