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

Add additional debug configuration for a better debugging experience + CI update #1893

Merged
merged 12 commits into from
Jan 30, 2025
Prev Previous commit
Next Next commit
Attempt to fix upload-artifact CI step
duckdoom5 committed Jan 23, 2025
commit 941c7fde900f64ef3a8fbfc11b6a9fe3ceb19c8c
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -100,9 +100,14 @@ jobs:
shell: bash
run: build/build.sh prepack -platform $PLATFORM -configuration $BUILD_CONFIGURATION

- uses: actions/upload-artifact@v3
- name: Upload Artifacts
# We only need a release version of this in the create_package job
if: matrix.build-cfg == 'Release'
uses: actions/upload-artifact@v4
with:
name: intermediate
name: intermediate-${{ matrix.build-cfg }}-${{ matrix.platform }}
retention-days: 7
overwrite: true
path: |
artifacts
include/**/*.h
@@ -127,9 +132,9 @@ jobs:
- name: Set version
run: nbgv cloud --all-vars

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: intermediate
name: intermediate-Release-x64

- name: Setup
shell: bash
@@ -140,7 +145,7 @@ jobs:
run: build/build.sh pack -configuration $BUILD_CONFIGURATION

- name: Upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CppSharp.nupkg
path: |