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 62adc9a commit ca5421c
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
- name: Build
run: cmake --build build --config Release

- name: List build directory contents
run: ls -la build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: build

generate-release-notes:
needs: build
Expand All @@ -49,6 +52,12 @@ jobs:
needs: generate-release-notes
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: build-artifacts
path: build

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -60,17 +69,14 @@ 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 # Update this path as needed
asset_path: ./build/ALBPL
asset_name: projet-monopoly-ing1
asset_content_type: application/octet-stream

0 comments on commit ca5421c

Please sign in to comment.