forked from wheremyfoodat/Panda3DS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update checkout to v4 * Update upload-artifact to v4 * don't try to reinstall python * Update to v4 in Qt_Build.yml too * remove python re-install in Qt_Build.yml too
- Loading branch information
1 parent
2754df9
commit 1674ad5
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
runs-on: macos-13 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Fetch submodules | ||
run: git submodule update --init --recursive | ||
|
||
|
@@ -40,7 +40,7 @@ jobs: | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | ||
|
||
- name: Install bundle dependencies | ||
run: brew install --overwrite [email protected] && brew install dylibbundler imagemagick | ||
run: brew install dylibbundler imagemagick | ||
|
||
- name: Run bundle script | ||
run: ./.github/mac-bundle.sh | ||
|
@@ -52,7 +52,7 @@ jobs: | |
run: zip -r Alber Alber.app | ||
|
||
- name: Upload MacOS App | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: MacOS Alber App Bundle | ||
path: 'Alber.zip' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
runs-on: macos-13 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Fetch submodules | ||
run: git submodule update --init --recursive | ||
|
||
|
@@ -67,7 +67,7 @@ jobs: | |
|
||
- name: Install bundle dependencies | ||
run: | | ||
brew install --overwrite [email protected] && brew install dylibbundler imagemagick | ||
brew install dylibbundler imagemagick | ||
- name: Install qt | ||
run: brew install qt && which macdeployqt | ||
|
@@ -90,7 +90,7 @@ jobs: | |
run: zip -r Alber Alber.app | ||
|
||
- name: Upload MacOS App | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: MacOS Alber App Bundle | ||
path: 'Alber.zip' | ||
|