Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug uploading the debug artifact #2955

Merged
merged 1 commit into from
Sep 6, 2023
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
env:
QS_BUILD_ONLY: 1
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build debug version
working-directory: Quicksilver
run: ./Tools/qsrelease Debug
- name: Upload debug version
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Quicksilver-debug.zip
path: /tmp/QS/build/Debug/Quicksilver*.dmg
name: Quicksilver-debug
path: /tmp/QS/build/Debug/Quicksilver.zip
- name: Build release version
working-directory: Quicksilver
run: ./Tools/qsrelease
Expand All @@ -38,7 +38,7 @@ jobs:
cp /tmp/Quicksilver.entitlements ./dmg/
tar -czvf ./dmg_ingredients.tar.gz ./dmg
- name: Upload components for sign action
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: DMG_INGREDIENTS
path: /tmp/QS/build/Release/dmg_ingredients.tar.gz
Expand All @@ -58,7 +58,7 @@ jobs:
KEYCHAIN_PROFILE: "Quicksilver Notarization"
steps:
- name: Download dmg folder artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: DMG_INGREDIENTS
path: /tmp/QS/build/Release/
Expand All @@ -71,7 +71,7 @@ jobs:
QS_INFO_VERSION=$(awk '/QS_INFO_VERSION/ { print $NF }' \
/tmp/qs_build_settings)
echo "QS_INFO_VERSION=${QS_INFO_VERSION}" >> "${GITHUB_ENV}"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Run Tools/qssign
Expand Down Expand Up @@ -104,19 +104,19 @@ jobs:
cd /tmp/QS/build/Release/
shasum --algorithm 256 Quicksilver*.dmg > checksum.txt
- name: Upload Quicksilver.dmg
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: "Quicksilver_${{ env.QS_INFO_VERSION }}.dmg"
path: /tmp/QS/build/Release/Quicksilver*.dmg
- name: Upload checksum
if: startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: /tmp/QS/build/Release/checksum.txt
- name: Download debug artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: Quicksilver-debug.zip
name: Quicksilver-debug
path: /tmp/Quicksilver-debug.zip
- name: Release
uses: softprops/action-gh-release@v1
Expand Down