Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,27 +223,27 @@ jobs:

# Download non-macOS build artifacts
- name: Download non-macOS build artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
path: ./artifacts

# Download macOS .app bundle zip (x64)
- name: Download macOS .app bundle zip (x64)
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ needs.get-version.outputs.version }}-osx-x64.app.zip
path: ./artifacts-app

# Download macOS .app bundle zip (arm64)
- name: Download macOS .app bundle zip (arm64)
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ needs.get-version.outputs.version }}-osx-arm64.app.zip
path: ./artifacts-app

# Download macOS universal DMG
- name: Download macOS universal DMG
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ needs.get-version.outputs.version }}-macos-universal.dmg
path: ./artifacts-dmg
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Download published artifact
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ inputs.version }}-${{ inputs.rid }}.zip
path: ./publish
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

# # Download the .app bundle artifact for zipping and release
# - name: Download .app bundle artifact
# uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
# uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
# with:
# name: MermaidPad-${{ inputs.version }}-${{ inputs.rid }}.app
# path: ./artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-universal-dmg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ jobs:

# Download the .app bundle artifacts that were uploaded by macos-bundle.yml
- name: Download macOS x64 app bundle
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ inputs.version }}-osx-x64.app.zip
path: ./artifacts/x64-app

- name: Download macOS ARM64 app bundle
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: MermaidPad-${{ inputs.version }}-osx-arm64.app.zip
path: ./artifacts/arm64-app
Expand Down
Loading