We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2aea24 commit 399a8f9Copy full SHA for 399a8f9
.github/workflows/pub.yml
@@ -16,6 +16,7 @@ jobs:
16
with:
17
persist-credentials: false
18
fetch-depth: 0
19
+ - run: echo -n ${{ github.ref_name }} > VERSION
20
- uses: pnpm/action-setup@v3
21
22
version: '*'
@@ -40,7 +41,6 @@ jobs:
40
41
pnpm publish --no-git-checks
42
env:
43
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- - run: echo -n ${{ github.ref_name }} > VERSION
44
- name: push
45
uses: stefanzweifel/git-auto-commit-action@v5
46
flake.lock
img.nix
@@ -1,5 +1,6 @@
1
{
2
name,
3
+ cfg ? "",
4
5
writeShellApplication,
6
bited-img,
@@ -8,5 +9,5 @@
8
9
10
writeShellApplication {
11
inherit name;
- text = "${bited-img}/bin/bited-img";
12
+ text = "${bited-img}/bin/bited-img ${cfg}";
13
}
0 commit comments