Skip to content

Commit

Permalink
set latest tag on npm to 2.0.0-next.58
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Dec 1, 2023
1 parent f0c9cf0 commit c6d7e6b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/set-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Set npm latest

on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Set latest
runs-on: ubuntu-latest
steps:
- run: npm dist-tag add [email protected] latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit c6d7e6b

Please sign in to comment.