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: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
- uses: actions/checkout@v4
if: steps.gate.outputs.skip != 'true'
with:
lfs: true
lfs: ${{ needs.context.outputs.trigger == 'release' }}
- uses: depot/setup-action@v1
if: steps.gate.outputs.skip != 'true'
- name: Log in to ghcr.io
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
lfs: true
lfs: ${{ needs.context.outputs.trigger == 'release' }}
- name: Compute build mode
id: mode
run: |
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
with:
# Need history for tag operations in the release tail.
fetch-depth: 0
lfs: true
lfs: ${{ needs.context.outputs.trigger == 'release' }}
- run: corepack enable
- uses: actions/setup-node@v4
with:
Expand Down
Loading