Skip to content

Commit

Permalink
CI: use macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Feb 7, 2025
1 parent 4882777 commit 4a3f900
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
runs-on: macos-13
runs-on: macos-latest
env:
QS_BUILD_ONLY: 1
QS_SOURCE_ROOT: "/tmp/git/quicksilver"
Expand Down Expand Up @@ -102,14 +102,14 @@ jobs:
run: |
tar -czvf "${{ env.PLUGIN_NAME }}.tar.gz" "${{ env.PLUGIN_NAME }}"
- name: Upload components for sign action
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: UNSIGNED_PLUGIN
path: /tmp/QS/build/Release/Quicksilver.app/Contents/PlugIns/${{ env.PLUGIN_NAME }}.tar.gz

sign:
needs: build
runs-on: macos-13
runs-on: macos-latest
env:
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
MACOS_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
Expand All @@ -118,7 +118,7 @@ jobs:
SIGNING_IDENTITY: ${{ secrets.SIGNING_IDENTITY }}
steps:
- name: Download targz artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: UNSIGNED_PLUGIN
path: /tmp/QS/build/Release/
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
run: |
tar -czvf "${{ env.PLUGIN_NAME }}.tar.gz" "${{ env.PLUGIN_NAME }}"
- name: Upload document
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.PLUGIN_NAME }}
path: /tmp/QS/build/Release/${{ env.PLUGIN_NAME }}.tar.gz

0 comments on commit 4a3f900

Please sign in to comment.