Skip to content

Commit

Permalink
Merge pull request #88 from sudara/update_actions
Browse files Browse the repository at this point in the history
Update GitHub Actions
  • Loading branch information
sudara authored Apr 26, 2024
2 parents 643abfd + 244f95f commit 3a5f421
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
submodules: true # Get JUCE populated

- name: Cache the build
uses: mozilla-actions/[email protected].3
uses: mozilla-actions/[email protected].4

- name: Import Certificates (macOS)
uses: apple-actions/import-codesign-certs@v2 # only exists as a tag right now
Expand Down Expand Up @@ -236,21 +236,21 @@ jobs:

- name: Upload Exe (Windows)
if: ${{ matrix.name == 'Windows' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}.exe
path: "${{ env.ARTIFACTS_PATH }}/${{ env.ARTIFACT_NAME }}.exe"

- name: Upload Zip (Linux)
if: ${{ matrix.name == 'Linux' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}.zip
path: "${{ env.ARTIFACTS_PATH }}/${{ env.ARTIFACT_NAME }}.zip"

- name: Upload DMG (macOS)
if: ${{ matrix.name == 'macOS' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}.dmg
path: packaging/${{ env.ARTIFACT_NAME }}.dmg
Expand All @@ -262,7 +262,7 @@ jobs:

steps:
- name: Get Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

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

0 comments on commit 3a5f421

Please sign in to comment.