Skip to content

Commit

Permalink
attempt 70
Browse files Browse the repository at this point in the history
  • Loading branch information
tishoyanchev committed Sep 27, 2023
1 parent 260b618 commit 23be2cf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: "publish npm"
on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: node
uses: actions/setup-node@v2
with:
registry-url: 'https://registry.npmjs.org'
- run: npm publish
- run: npm install
- run: npm run build
env:
NODE_AUTH_TOKEN: ${{secrets.IFX_FEEDBACK_WIDGET}}
publish:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: node
uses: actions/setup-node@v2
with:
node-version: 12
registry-url: https://registry.npmjs.org
- name: publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.IFX_FEEDBACK_WIDGET}}
6 changes: 3 additions & 3 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
registry=https://registry.npmjs.org/
always-auth=true
# //registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
# registry=https://registry.npmjs.org/
# always-auth=true

0 comments on commit 23be2cf

Please sign in to comment.