Skip to content

Commit e885888

Browse files
committed
wip: fix some workflow file errors
1 parent b4fd961 commit e885888

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ on:
77

88
jobs:
99
web:
10-
uses: ./github/workflows/~publish_web.yml@feature/publish-pipeline
10+
uses: ./.github/workflows/~publish_web.yml@feature/publish-pipeline
1111
secrets: inherit
1212
with:
1313
version: alpha ${{github.run_number}}
1414
npm_tag: alpha
1515

1616
dotnet:
17-
uses: ./github/workflows/~publish_dotnet.yml@feature/publish-pipeline
17+
uses: ./.github/workflows/~publish_dotnet.yml@feature/publish-pipeline
1818
secrets: inherit
1919
with:
2020
version: alpha ${{github.run_number}}
2121

2222
kotlin:
23-
uses: ./github/workflows/~publish_kotlin.yml@feature/publish-pipeline
23+
uses: ./.github/workflows/~publish_kotlin.yml@feature/publish-pipeline
2424
secrets: inherit
2525
with:
2626
version: alpha ${{github.run_number}}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
web:
23-
uses: ./github/workflows/~publish_web.yml@feature/publish-pipeline
23+
uses: ./.github/workflows/~publish_web.yml@feature/publish-pipeline
2424
secrets: inherit
2525
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_web == 'true')
2626
with:
@@ -29,15 +29,15 @@ jobs:
2929
force: true
3030

3131
dotnet:
32-
uses: ./github/workflows/~publish_dotnet.yml@feature/publish-pipeline
32+
uses: ./.github/workflows/~publish_dotnet.yml@feature/publish-pipeline
3333
secrets: inherit
3434
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_csharp == 'true')
3535
with:
3636
version: ${{github.run_number}}
3737
force: true
3838

3939
kotlin:
40-
uses: ./github/workflows/~publish_kotlin.yml@feature/publish-pipeline
40+
uses: ./.github/workflows/~publish_kotlin.yml@feature/publish-pipeline
4141
secrets: inherit
4242
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_kotlin_android == 'true')
4343
with:

.github/workflows/~publish_dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
dotnet-version: "8"
3838

39-
- run: npm run update-version -- ${{inputs.version}
39+
- run: npm run update-version -- ${{inputs.version}}
4040
- run: npm ci
4141
- run: npm run build-csharp
4242

.github/workflows/~publish_kotlin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
java-version: "19"
3838
distribution: "temurin"
3939

40-
- run: npm run update-version -- ${{inputs.version}
40+
- run: npm run update-version -- ${{inputs.version}}
4141
- run: npm ci
4242
- run: npm run build-kotlin
4343

.github/workflows/~publish_web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
cache: 'npm'
3939
registry-url: https://registry.npmjs.org/
4040

41-
- run: npm run update-version -- ${{inputs.version}
41+
- run: npm run update-version -- ${{inputs.version}}
4242
- run: npm ci
4343
- run: npm run build-web
4444
- run: npm run build-language-server

0 commit comments

Comments
 (0)