Skip to content

Commit

Permalink
Fix parameter name.
Browse files Browse the repository at this point in the history
  • Loading branch information
dompuiu committed Jun 25, 2024
1 parent 299f2f7 commit 272960e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-core-modules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Core Module Name
if: ${{ github.event.inputs.tag != 'cookie' && github.event.inputs.tag != 'document' && github.event.inputs.tag != 'loadScript' && github.event.inputs.tag != 'objectAssign' && github.event.inputs.tag != 'promise' && github.event.inputs.tag != 'query-string' && github.event.inputs.tag != 'window' }}
if: ${{ github.event.inputs.module != 'cookie' && github.event.inputs.module != 'document' && github.event.inputs.module != 'loadScript' && github.event.inputs.module != 'objectAssign' && github.event.inputs.module != 'promise' && github.event.inputs.module != 'query-string' && github.event.inputs.module != 'window' }}
run: |
echo 'Only the modules "cookie", "document", "loadScript", "objectAssign", "promise", "query-string" and "window" are supported. You entered "${{ github.event.inputs.tag }}"'
echo 'Only the modules "cookie", "document", "loadScript", "objectAssign", "promise", "query-string" and "window" are supported. You entered "${{ github.event.inputs.module }}"'
exit 1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down

0 comments on commit 272960e

Please sign in to comment.