-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f755dd3
commit 409e4e2
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Name: Fix NPM Tags | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
publish: | ||
name: Fix NPM Tags | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup | ||
uses: ./.github/actions/setup | ||
with: | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: Setup .yarnrc.yml | ||
run: yarn config set npmAuthToken $NPM_AUTH_TOKEN | ||
env: | ||
NPM_AUTH_TOKEN: ${{ secrets.NPM_ORG_TOKEN }} | ||
|
||
# - name: Fix latest Tag | ||
# run: yarn npm tag add @maplibre/[email protected] latest | ||
# | ||
# - name: Fix alpha Tag | ||
# run: yarn npm tag add @maplibre/[email protected] alpha |