Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build-deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ on:
- "Makefile"
- ".mvn"
- ".gitignore"

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
build-push:
name: Build and push to registries
# When releasing, the Maven release plugin will create two commits -
# we only want this job to run once, so we exclude one of the commits.
if: ! contains(${{ github.event.head_commit.message }}, "prepare for next development iteration")
if: ${{ !contains(${{ github.event.head_commit.message }}, "prepare for next development iteration") }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -206,4 +211,4 @@ jobs:
]
}
env:
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
12 changes: 7 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"];
perSystem = {
config,
self',
inputs',
pkgs,
system,
...
}: {
devShells.default = pkgs.mkShell {
name = "dapla-pseudo-service";
packages = with pkgs; [gnumake maven openjdk];
packages = with pkgs; [
gnumake
nixd
maven
openjdk
yaml-language-server
];
};
formatter = pkgs.alejandra;
};
Expand Down
Loading