Skip to content

Commit

Permalink
Publish RC and Latest
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Aug 31, 2023
1 parent 6a105a1 commit 9d976de
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish latest version to NPM

on:
push:
tags:
- v*

jobs:
publish-rc-npm:
name: "Publish latest version to npm"
uses: ./.github/workflows/publish.yaml
with:
TAG: latest
UPDATE_VERSION: false
secrets: inherit
15 changes: 15 additions & 0 deletions .github/workflows/publish-rc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish RC version to NPM

on:
push:
branches:
- master

jobs:
publish-rc-npm:
name: "Publish RC version to npm"
uses: ./.github/workflows/publish.yaml
with:
TAG: rc
UPDATE_VERSION: true
secrets: inherit

0 comments on commit 9d976de

Please sign in to comment.