Fix action
This commit is contained in:
parent
3317c4f763
commit
9a48c84998
|
@ -21,9 +21,7 @@ jobs:
|
||||||
|
|
||||||
- name: Publish latest
|
- name: Publish latest
|
||||||
if: "!contains(github.ref, '-')"
|
if: "!contains(github.ref, '-')"
|
||||||
run:
|
run: npm publish --tag latest --dry-run
|
||||||
- npm publish --tag latest --dry-run
|
|
||||||
- npm dist-tag rm thelounge-theme-solarized next || true
|
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
||||||
|
|
||||||
|
@ -32,3 +30,9 @@ jobs:
|
||||||
run: npm publish --tag next --dry-run
|
run: npm publish --tag next --dry-run
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
||||||
|
|
||||||
|
- name: Remove next tag
|
||||||
|
if: "!contains(github.ref, '-')"
|
||||||
|
run: npm dist-tag rm thelounge-theme-solarized next || true
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
||||||
|
|
Loading…
Reference in New Issue