Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok committed May 21, 2024
1 parent 4e15e39 commit d3f36bc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
- name: Build Project
run: |
cmake --build . --target pack
mv src/vnote.dmg ../VNote-${{env.VNOTE_VER}}-mac.dmg
working-directory: ${{runner.workspace}}/build

# Enable tmate debugging of manually-triggered workflows if the input option was provided
Expand All @@ -98,8 +99,8 @@ jobs:
- name: Archive Artifacts
uses: actions/upload-artifact@v2
with:
name: vnote-mac-x64-qt${{matrix.config.qt}}_v${{env.VNOTE_VER}}
path: ${{runner.workspace}}/build/vnote-mac-x64-qt${{matrix.config.qt}}_v${{env.VNOTE_VER}}.dmg
name: VNote-${{env.VNOTE_VER}}-mac
path: ${{runner.workspace}}/build/VNote-${{env.VNOTE_VER}}-mac.dmg

- name: Update Tag
if: github.ref == 'refs/heads/master'
Expand All @@ -112,7 +113,7 @@ jobs:
uses: johnwbyrd/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: ${{runner.workspace}}/build/vnote-mac-x64-qt${{matrix.config.qt}}.dmg
files: ${{runner.workspace}}/build/VNote-${{env.VNOTE_VER}}-mac.dmg
release: Continuous Build
tag: continuous-build

Expand All @@ -121,7 +122,7 @@ jobs:
uses: ncipollo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: ${{runner.workspace}}/build/vnote-mac-x64-qt${{matrix.config.qt}}_v${{env.VNOTE_VER}}.dmg
artifacts: ${{runner.workspace}}/build/VNote-${{env.VNOTE_VER}}-mac.dmg
commit: master
tag: v${{env.VNOTE_VER}}
allowUpdates: true
Expand Down

0 comments on commit d3f36bc

Please sign in to comment.