Skip to content

Commit ad15ba1

Browse files
authored
ci: fix typo in manual-publish.yml (#64)
The reusable workflow paths used `./github` instead of `./.github`.
1 parent a2d3946 commit ad15ba1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/manual-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
name: ${{ format('Install launchdarkly-server-sdk @ {0}', steps.rockspecs.outputs.server_version) }}
7070
needs: build-publish
7171
if: ${{ inputs.rockspec == 'server' || inputs.rockspec == 'both' }}
72-
uses: ./github/workflows/install-lua-sdk.yml
72+
uses: ./.github/workflows/install-lua-sdk.yml
7373
with:
7474
package: launchdarkly-server-sdk
7575
version: ${{ steps.rockspecs.outputs.server_version }}
@@ -78,7 +78,7 @@ jobs:
7878
name: ${{ format('Install launchdarkly-server-sdk-redis @ {0}', steps.rockspecs.outputs.server_redis_version) }}
7979
needs: build-publish
8080
if: ${{ inputs.rockspec == 'redis' || inputs.rockspec == 'both' }}
81-
uses: ./github/workflows/install-lua-sdk.yml
81+
uses: ./.github/workflows/install-lua-sdk.yml
8282
with:
8383
package: launchdarkly-server-sdk-redis
8484
version: ${{ steps.rockspecs.outputs.server_redis_version }}

0 commit comments

Comments
 (0)