diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eda4837ab1..560e4937ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,10 +64,10 @@ jobs: xmake f -a x64 -m ${{ matrix.mode }} -p windows -v -y --target_type=${{ matrix.target_type }} --tests=${{ matrix.tests }} - run: | - xmake -v -w -y + xmake -v -y - run: | - sentry-cli debug-files upload --include-sources /bin/LeviLamina/LeviLamina.dll /bin/LeviLamina/LeviLamina.pdb + sentry-cli debug-files upload --include-sources bin/LeviLamina - uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7fc6db0613..b7f6e9b3fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,6 +21,12 @@ jobs: # with: # xmake-version: branch@master + - uses: matbour/setup-sentry-cli@v1 + with: + token: ${{ SECRETS.SENTRY_TOKEN }} + organization: ${{ SECRETS.SENTRY_ORG }} + project: ${{ SECRETS.SENTRY_PROJECT }} + - uses: actions/cache@v4 with: path: | @@ -38,7 +44,10 @@ jobs: xmake f -a x64 -m ${{ matrix.mode }} -p windows -v -y - run: | - xmake -v -w -y + xmake -v -y + + - run: | + sentry-cli debug-files upload --include-sources bin/LeviLamina # - run: | # xmake package -v -y