We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c6ddd commit 3d97a40Copy full SHA for 3d97a40
1 file changed
.github/workflows/continuous-integration.yml
@@ -333,11 +333,16 @@ jobs:
333
yarn install
334
working-directory: typescript-yarn-esm-action
335
336
- - name: Link @github/local-action
337
- id: link
338
- run: yarn link
+ - name: Create Global Link
+ id: create-link
+ run: npm link
339
working-directory: local-action
340
341
+ - name: Use Global Link
342
+ id: use-link
343
+ run: yarn link "${{ github.workspace }}/local-action"
344
+ working-directory: typescript-yarn-esm-action
345
+
346
- name: Generate Dotenv File
347
id: dotenv
348
run: |
0 commit comments