Skip to content

Commit c6e1373

Browse files
ci: Fix input names
1 parent 12a14d1 commit c6e1373

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- check-date
3030
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
3131
with:
32-
has_mkdocs: true
32+
has-mkdocs: true
3333

3434
pre-release:
3535
if: needs.check_date.outputs.should_run != 'false'
@@ -46,6 +46,6 @@ jobs:
4646
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4747
uses: oliversalzburg/workflows/.github/workflows/publish-npm-package.yml@main
4848
with:
49-
has_mkdocs: true
49+
has-mkdocs: true
5050
is-canary: true
51-
with-github-release: true
51+
wants-github-release: true

.github/workflows/pre-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
workflow_dispatch:
88
inputs:
9-
with-github-release:
9+
wants-github-release:
1010
default: false
1111
description: Create a GitHub release?
1212
required: false
@@ -19,7 +19,7 @@ jobs:
1919
name: 🔹 QA
2020
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
2121
with:
22-
has_mkdocs: true
22+
has-mkdocs: true
2323

2424
pre-release:
2525
if: github.ref_name == github.event.repository.default_branch
@@ -34,6 +34,6 @@ jobs:
3434
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3535
uses: oliversalzburg/workflows/.github/workflows/publish-npm-package.yml@main
3636
with:
37-
has_mkdocs: true
37+
has-mkdocs: true
3838
is-canary: true
39-
with-github-release: ${{ inputs.with-github-release || false }}
39+
wants-github-release: ${{ inputs.wants-github-release || false }}

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
name: 🔹 QA
1313
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
1414
with:
15-
has_mkdocs: true
15+
has-mkdocs: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: 🔹 QA
1414
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
1515
with:
16-
has_mkdocs: true
16+
has-mkdocs: true
1717

1818
release:
1919
name: 🔹 Publish
@@ -27,6 +27,6 @@ jobs:
2727
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2828
uses: oliversalzburg/workflows/.github/workflows/publish-npm-package.yml@main
2929
with:
30-
has_mkdocs: true
30+
has-mkdocs: true
3131
is-canary: false
32-
with-github-release: true
32+
wants-github-release: true

0 commit comments

Comments
 (0)