Compare commits

..

4 Commits

Author SHA1 Message Date
e72b6330c2 chore: better action workflow
All checks were successful
Publish Docker Images / build-docker (push) Successful in 11m9s
Publish Docker Images / coverage-and-sonar (push) Successful in 11m47s
Publish Docker Images / push-docker (push) Successful in 30s
2026-02-04 21:50:32 +01:00
7742f2db08 fix(README): update badges on README 2026-02-04 20:53:18 +01:00
67b2e64b32 fix(contact): ignore empty honeypot values even if String exists 2026-02-04 20:53:18 +01:00
cffdab1be6 fix(nix): remove unused self value 2026-02-04 20:53:18 +01:00
2 changed files with 3 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ on:
env:
CACHIX_NAME: devenv
DOCKER_REGISTRY: labs.phundrak.com # Override in repository settings if needed
IMAGE_NAME: phundrak/phundrak-dot-com-backend
IMAGE_NAME: phundrak/bakit
jobs:
coverage-and-sonar:
@@ -112,18 +112,13 @@ jobs:
registry-username: ${{ secrets.DOCKER_USERNAME }}
registry-password: ${{ secrets.DOCKER_PASSWORD }}
image-name: ${{ env.IMAGE_NAME }}
local-image-name: phundrak/phundrak-dot-com-backend:latest
local-image: phundrak/bakit:latest
event-name: ${{ github.event_name }}
ref: ${{ github.ref }}
ref-type: ${{ github.ref_type }}
ref-name: ${{ github.ref_name }}
pr-number: ${{ github.event.pull_request.number }}
- name: Delete Docker image artifact
uses: geekyeggo/delete-artifact@v2
with:
name: docker-image
- name: Image published successfully
run: |
echo "✅ Docker image(s) published successfully to ${{ env.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}"

View File

@@ -3,7 +3,7 @@
rustPlatform,
...
}: let
cargoToml = builtins.fromTOML (builtins.readFile ../Cargo.toml);
cargoToml = fromTOML (builtins.readFile ../Cargo.toml);
name = cargoToml.package.name;
version = cargoToml.package.version;
rustBuild = rustPlatform.buildRustPackage {