Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Commit

Permalink
ci: properly build the package bin
Browse files Browse the repository at this point in the history
  • Loading branch information
El-Fitz committed Sep 1, 2024
1 parent b52c4f0 commit a7e4fae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ jobs:
# name: dist
# path: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- run: yarn run tsc -p tsconfig.json
- run: yarn run tsc -p tsconfig.bin.json
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -70,7 +71,8 @@ jobs:
# name: dist
# path: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- run: yarn run tsc -p tsconfig.json
- run: yarn run tsc -p tsconfig.bin.json
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@csbnlu/jawks-private-keys-provisioner",
"version": "0.0.21",
"version": "0.0.22",
"devDependencies": {
"@types/aws-lambda": "^8.10.143",
"@types/luxon": "^3.4.2",
Expand All @@ -23,5 +23,6 @@
"bin": {
"jawks-private-keys-provisioner": "dist/bin/provision-private-keys.mjs"
},
"main": "dist/index.js",
"license": "AGPL-3.0-or-later"
}

0 comments on commit a7e4fae

Please sign in to comment.