Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
fix: DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasolerr committed May 28, 2024
1 parent cf27ebb commit 62adc9a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
- name: Build
run: cmake --build build --config Release

- name: List build directory contents
run: ls -la build

generate-release-notes:
needs: build
runs-on: ubuntu-latest
Expand Down Expand Up @@ -57,14 +60,17 @@ jobs:
draft: false
prerelease: false

- name: List build directory contents for debugging
run: ls -la build

- name: Upload Release Asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/ALBPL
asset_path: ./build/ALBPL # Update this path as needed
asset_name: projet-monopoly-ing1
asset_content_type: application/octet-stream

0 comments on commit 62adc9a

Please sign in to comment.