Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write # for pushing the tag
id-token: write # for npm trusted publishing (OIDC)
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -95,9 +96,6 @@ jobs:
npm run build
npm publish
'
env:
# npm reads this as a config key — avoids writing ~/.npmrc.
NPM_CONFIG_//registry.npmjs.org/:_authToken: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Tag the release
if: steps.v.outputs.release == 'true'
run: |
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
devShells = forAllSystems ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
nodejs_22
nodejs # nixpkgs default = current LTS (24.x as of this lock)
postgresql_17
act # run GitHub Actions workflows locally (needs Docker on host)
];
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typegres",
"version": "0.3.0",
"version": "0.3.1",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
Expand Down Expand Up @@ -54,7 +54,7 @@
}
},
"bin": {
"tg": "./dist/cli.mjs"
"tg": "dist/cli.mjs"
},
"files": [
"dist"
Expand Down
Loading