Commit afbcc87 1 parent 06626b7 commit afbcc87 Copy full SHA for afbcc87
File tree 4 files changed +45
-5
lines changed
4 files changed +45
-5
lines changed Original file line number Diff line number Diff line change 12
12
steps :
13
13
- uses : actions/checkout@v4
14
14
- uses : DeterminateSystems/nix-installer-action@v16
15
- - uses : DeterminateSystems/magic-nix-cache-action@v9
15
+ with :
16
+ extra-conf : |
17
+ accept-flake-config = true
18
+ - uses : cachix/cachix-action@v15
19
+ with :
20
+ name : mirkolenz
21
+ authToken : ${{ secrets.CACHIX_TOKEN }}
16
22
- run : nix fmt
17
23
-
uses :
autofix-ci/[email protected]
18
24
with :
Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v4
12
12
- uses : DeterminateSystems/nix-installer-action@v16
13
- - uses : DeterminateSystems/magic-nix-cache-action@v9
13
+ with :
14
+ extra-conf : |
15
+ accept-flake-config = true
16
+ - uses : cachix/cachix-action@v15
17
+ with :
18
+ name : mirkolenz
19
+ authToken : ${{ secrets.CACHIX_TOKEN }}
14
20
- run : nix flake check --show-trace
Original file line number Diff line number Diff line change 21
21
steps :
22
22
- uses : actions/checkout@v4
23
23
- uses : DeterminateSystems/nix-installer-action@v16
24
- - uses : DeterminateSystems/magic-nix-cache-action@v9
24
+ with :
25
+ extra-conf : |
26
+ accept-flake-config = true
27
+ - uses : cachix/cachix-action@v15
28
+ with :
29
+ name : mirkolenz
30
+ authToken : ${{ secrets.CACHIX_TOKEN }}
25
31
- run : nix profile install .#release-env
26
32
- uses : cihelper/action-semanticrelease-uv@v1
27
33
id : semanticrelease
53
59
with :
54
60
extra-conf : |
55
61
extra-platforms = aarch64-linux
56
- - uses : DeterminateSystems/magic-nix-cache-action@v9
62
+ accept-flake-config = true
63
+ - uses : cachix/cachix-action@v15
64
+ with :
65
+ name : mirkolenz
66
+ authToken : ${{ secrets.CACHIX_TOKEN }}
57
67
- run : nix run .#docker-manifest --impure
58
68
env :
59
69
VERSION : ${{ needs.release.outputs.version }}
87
97
ref : ${{ needs.release.outputs.git-head }}
88
98
- uses : actions/configure-pages@v5
89
99
- uses : DeterminateSystems/nix-installer-action@v16
90
- - uses : DeterminateSystems/magic-nix-cache-action@v9
100
+ with :
101
+ extra-conf : |
102
+ accept-flake-config = true
103
+ - uses : cachix/cachix-action@v15
104
+ with :
105
+ name : mirkolenz
106
+ authToken : ${{ secrets.CACHIX_TOKEN }}
91
107
- run : nix build .#docs
92
108
- uses : actions/upload-pages-artifact@v3
93
109
with :
Original file line number Diff line number Diff line change 27
27
inputs . nixpkgs . follows = "nixpkgs" ;
28
28
} ;
29
29
} ;
30
+ nixConfig = {
31
+ extra-substituters = [
32
+ "https://nix-community.cachix.org"
33
+ "https://mirkolenz.cachix.org"
34
+ "https://pyproject-nix.cachix.org"
35
+ ] ;
36
+ extra-trusted-public-keys = [
37
+ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
38
+ "mirkolenz.cachix.org-1:R0dgCJ93t33K/gncNbKgUdJzwgsYVXeExRsZNz5jpho="
39
+ "pyproject-nix.cachix.org-1:UNzugsOlQIu2iOz0VyZNBQm2JSrL/kwxeCcFGw+jMe0="
40
+ ] ;
41
+ } ;
30
42
outputs =
31
43
inputs @{
32
44
self ,
You can’t perform that action at this time.
0 commit comments