Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Apply Tag to Ref
if: inputs.version == '' # Only apply new tag if no specific version was provided
uses: actions/github-script@v5
uses: actions/github-script@v8
with:
script: |
github.rest.git.createRef({
Expand All @@ -135,7 +135,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: ${{ inputs.version == 'latest' || inputs.version == '' ? github.sha : format('refs/tags/{0}/{1}', matrix.target, inputs.version) }} # Checkout specific version if provided, otherwise current SHA
ref: "${{ inputs.version == 'latest' || inputs.version == '' ? github.sha : format('refs/tags/{0}/{1}', matrix.target, inputs.version) }}" # Checkout specific version if provided, otherwise current SHA

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down