Skip to content

Commit 60c71f5

Browse files
committed
feat: angular 21 support
1 parent 8253d12 commit 60c71f5

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,31 @@ on:
77
release:
88
types: [created]
99

10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
1013
jobs:
1114
publish:
1215
runs-on: ubuntu-latest
1316
permissions:
1417
contents: read
1518
packages: write
19+
id-token: write
1620
steps:
17-
- uses: actions/checkout@v6
21+
- name: Checkout
22+
uses: actions/checkout@v6
1823
with:
1924
fetch-depth: 0
20-
- uses: actions/setup-node@v6
25+
- name: Setup Node.js
26+
uses: actions/setup-node@v6
2127
with:
2228
cache: npm
2329
node-version-file: '.nvmrc'
2430
registry-url: https://npm.pkg.github.com/
2531
- name: Install dependencies
2632
run: npm ci
2733
- name: Build library
28-
run: npm run ci:build:lib && npm run ci:build:app && ls && cd dist/angularx-qrcode
34+
run: npm run ci:build:lib
2935
- name: Publish to npm
3036
working-directory: ./dist/angularx-qrcode
31-
run: npm publish
32-
env:
33-
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
37+
run: npm publish --provenance --access public

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularx-qrcode",
3-
"version": "22.0.0",
3+
"version": "21.0.0",
44
"private": true,
55
"author": {
66
"name": "Andreas Jacob <andreas@cordobo.de>",

0 commit comments

Comments
 (0)