Skip to content

Commit 633fb0b

Browse files
committed
ci: remove oci container builder
1 parent 4666868 commit 633fb0b

File tree

3 files changed

+1
-24
lines changed

3 files changed

+1
-24
lines changed

.github/workflows/nix.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,7 @@ jobs:
1616
with:
1717
name: trickypr
1818
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
19-
- name: 'Login to GitHub Container Registry'
20-
uses: docker/login-action@v3
21-
with:
22-
registry: ghcr.io
23-
username: ${{github.actor}}
24-
password: ${{secrets.GITHUB_TOKEN}}
2519
- run: nix build
26-
- run: docker load < result
27-
- run: docker push ghcr.io/anucssa/rubric-merge:latest
28-
- run: nix build .#bin
2920
- uses: actions/upload-artifact@v4
3021
with:
3122
path: ./result/bin/rubric-merge

flake.nix

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
let
2929
overlays = [ (import rust-overlay) ];
3030
package = import ./nix/package.nix;
31-
docker-image = import ./nix/docker-image.nix;
3231
pkgs = import nixpkgs {
3332
inherit system overlays;
3433
};
@@ -51,11 +50,7 @@
5150
inherit pkgs;
5251
naersk = naersk';
5352
};
54-
docker = docker-image {
55-
inherit pkgs;
56-
bin = bin;
57-
};
58-
default = docker;
53+
default = bin;
5954
};
6055

6156
devShells.default =

nix/docker-image.nix

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)