Skip to content

Commit c2374c1

Browse files
committed
stop publishing alphas to npm
1 parent f796cf1 commit c2374c1

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -319,32 +319,3 @@ jobs:
319319
env:
320320
WEB_EXT_API_KEY: ${{ secrets.FIREFOX_API_KEY }}
321321
WEB_EXT_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}
322-
323-
publish-npm:
324-
name: Publish npm package
325-
needs:
326-
- test
327-
- ember-try
328-
- build
329-
runs-on: ubuntu-latest
330-
steps:
331-
- name: Set up node
332-
uses: actions/setup-node@v4
333-
- name: Download artifacts (npm)
334-
uses: actions/download-artifact@v4
335-
with:
336-
name: npm
337-
path: npm
338-
- name: Publish to npm
339-
if: >-
340-
github.event_name == 'schedule' ||
341-
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
342-
env:
343-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
344-
working-directory: npm
345-
run: |
346-
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}"> ~/.npmrc
347-
npm whoami
348-
if [[ "$GITHUB_EVENT_NAME" == "schedule" ]]; then
349-
npm publish --tag alpha
350-
fi

0 commit comments

Comments
 (0)