Skip to content

Commit 124182d

Browse files
authored
Bugfix/secrets in matrix (#23)
* remove secrets from matrix * use npm insted of yarn :/
1 parent be92c91 commit 124182d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737

3838
- name: yarn publish
3939
working-directory: dist/ng-mat-components
40-
run: yarn publish --access public --new-version ${{ needs.create_release.outputs.version }} --no-git-tag-version
40+
run: |
41+
npm version ${{ needs.create_release.outputs.version }}
42+
npm publish
4143
env:
4244
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
4345

0 commit comments

Comments
 (0)