Skip to content
This repository was archived by the owner on Jan 11, 2026. It is now read-only.
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
11 changes: 7 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: ubuntu-latest
path: obj/elkhound/elkhound
if-no-files-found: error
build-macos:
build-nix:
strategy:
matrix:
include:
Expand Down Expand Up @@ -90,6 +90,11 @@ jobs:
path: build/elkhound/elkhound.exe
build-oci-image:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: linux/arm64
- os: linux/amd64
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
Expand All @@ -102,9 +107,7 @@ jobs:
with:
context: .
push: false
platforms: |
linux/arm64
linux/amd64
platforms: ${{ matrix.os }}
build-args: |
GITHUB_REF
GITHUB_SHA
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: ubuntu-latest
path: obj/elkhound/elkhound
if-no-files-found: error
build-macos:
build-nix:
strategy:
matrix:
include:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
name: release
permissions:
contents: write
needs: [build-nix, windows-build]
needs: [build-nix, build-linux, windows-build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
Expand Down
Loading