Skip to content

Commit

Permalink
fix: use pure nix shell for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Feb 7, 2024
1 parent fe128bf commit 87bda8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: nix develop .#releaser -c scripts/ci/release.sh
run: nix develop -i .#releaser -c scripts/ci/release.sh
1 change: 1 addition & 0 deletions nix/env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ with packages;
];

releaser = [
git
sg
];
}
2 changes: 1 addition & 1 deletion scripts/ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -eou pipefail

rm .git/hooks/* || true

sg release -i npm
sg release

0 comments on commit 87bda8a

Please sign in to comment.