We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9066069 commit 7ef35b5Copy full SHA for 7ef35b5
.github/workflows/reviewing_changes.yml
@@ -26,6 +26,7 @@ jobs:
26
env:
27
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
28
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
29
+ PACKAGE_URL: ${{ github.event.inputs.package_url }}
30
31
steps:
32
- uses: actions/checkout@v3
@@ -59,7 +60,7 @@ jobs:
59
60
if: ${{ github.event.inputs.package_url != '' }}
61
run: |
62
echo 'Publishing tar.gz to local registry'
- curl -o staging_package.tgz '${{ github.event.inputs.package_url }}'
63
+ curl -o staging_package.tgz "$PACKAGE_URL"
64
npm install verdaccio -g
65
verdaccio &
66
npm config set registry http://localhost:4873
0 commit comments