We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a073ec commit e080610Copy full SHA for e080610
1 file changed
.github/actions/deploy-setup/action.yml
@@ -25,8 +25,13 @@ runs:
25
- name: Install all artifacts
26
if: ${{ inputs.artifacts == 'true' }}
27
uses: actions/download-artifact@v4
28
+ - name: Install release bundle
29
+ if: ${{ inputs.artifacts != 'true' }}
30
+ uses: actions/download-artifact@v4
31
+ with:
32
+ name: release-bundle
33
+ path: ${{ github.workspace }}/release-bundle
34
- name: Restore release commit
- if: ${{ inputs.artifacts == 'true' }}
35
shell: bash
36
run: |
37
git switch -c release
0 commit comments