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 7f00136 commit 944fc72Copy full SHA for 944fc72
.github/workflows/dev-packages.yaml
@@ -2,9 +2,6 @@ name: Packages Deploy
2
3
on: workflow_dispatch
4
5
-env:
6
- SECRETS: ${{ toJSON(secrets) }}
7
-
8
jobs:
9
publish:
10
name: Publish Dev Packages
@@ -23,7 +20,7 @@ jobs:
23
20
run: |
24
21
npm install -g yarn
25
22
echo "Yarn version: $(yarn -v)"
26
- echo "//registry.npmjs.org/:_authToken=${{SECRETS.NPM_TOKEN}}" >> ~/.npmrc
+ echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
27
28
- name: Install Dependencies
29
run: yarn install --frozen-lockfile
0 commit comments