Skip to content

Commit

Permalink
Change trigger to also include tags
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelJenni committed Oct 14, 2023
1 parent 5c790fb commit 0736de3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/firebaseui-angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
push:
branches:
- 'master'
tags:
- 'v*'

concurrency:
group: "${{ github.ref }}"
Expand All @@ -24,6 +26,6 @@ jobs:
- run: npm run build-lib
- run: cd dist/firebaseui-angular-library
- run: npm publish
if: startsWith(github.ref, 'refs/tags/v')
if: github.ref_type == 'tag'
env:
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"

0 comments on commit 0736de3

Please sign in to comment.