Skip to content
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
publish:
timeout-minutes: 60
runs-on: ubuntu-latest
needs: [ build-and-test, inspect-code, cleanup-code ]
needs: [ build-and-test ]
if: ${{ !github.event.pull_request.head.repo.fork }}
permissions:
packages: write
Expand All @@ -216,6 +216,10 @@ jobs:
uses: smorimoto/tune-github-hosted-runner-network@v1
- name: Download artifacts
uses: actions/download-artifact@v5

- name: List downloaded artefacts
run: ls -al /home/runner/work/JsonApiDotNetCore.MongoDb/JsonApiDotNetCore.MongoDb

- name: Publish to GitHub Packages
if: ${{ github.event_name == 'push' || github.event_name == 'release' }}
run: |
Expand Down
Loading