Skip to content

Commit b0cbb68

Browse files
Feat/implement adr0019 ii (#516)
### Proposed Changes * change 1 * change 2 ### Checklist - [ ] Tests - [ ] Translations - [ ] Security Implications Contemplated (add notes if applicable) ### Additional Info ** any additional useful context or info ** ### Screenshots Original | Updated :-------------------------:|:-------------------------: ** original screenshot ** | ** updated screenshot ** fixes #515 --------- Co-authored-by: Kevin <kfariid@gmail.com>
1 parent a5fc347 commit b0cbb68

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/cicd_release-sdk.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,15 @@ jobs:
122122
needs: [ precheck ]
123123
runs-on: ubuntu-${{ vars.UBUNTU_RUNNER_VERSION || '24.04' }}
124124
steps:
125+
# Required before referencing any local (./) action — the runner's workspace is
126+
# empty otherwise, so GitHub can't even locate deploy-javascript-sdk's action.yml.
127+
# The composite action re-checks-out internally at the correct ref for the actual
128+
# build/publish; this checkout only needs to make the action definition resolvable.
129+
- name: 'Checkout'
130+
uses: actions/checkout@v4
131+
with:
132+
ref: ${{ needs.precheck.outputs.REF }}
133+
125134
- name: 'LTS skip notice'
126135
if: needs.precheck.outputs.IS_LTS == 'true'
127136
run: |

0 commit comments

Comments
 (0)