Skip to content

Commit e4adedb

Browse files
workaround
1 parent 612445c commit e4adedb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/publish.dispatch.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Echo Input
16-
run: echo "$INPUT_RELEASE_TAG"
16+
run: echo "$(INPUT_RELEASE_TAG)"
1717

1818
- uses: actions/github-script@v7
1919
id: validate-release
2020
with:
2121
script: |
22-
const tag = core.getInput('release_tag', { required: true });
22+
// the "core" module does not have access to workflow_dispatch inputs
23+
const tag = '${{ inputs.release_tag }}';
2324
2425
let exhausted = false;
2526
let page = 1;

0 commit comments

Comments
 (0)