From a2a7dadf13d7ccb9e977466bb5a870d3b477a714 Mon Sep 17 00:00:00 2001 From: Matthew Seaman Date: Fri, 13 Oct 2023 14:52:31 +0100 Subject: [PATCH 1/3] Ooops. Turns out we do actually want the arm64 images (#2) Since that what several of the laptops run on. --- .github/workflows/push.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 177f1bc..69e7e3a 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -53,6 +53,7 @@ jobs: - ./build.sh develop platform: - linux/amd64 + - linux/arm64 fail-fast: false env: GH_ACTION: enable diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ee202e..68b8512 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,7 @@ jobs: - ./build.sh develop platform: - linux/amd64 + - linux/arm64 fail-fast: false runs-on: ubuntu-latest name: Builds new NetBox Docker Images From b8f5bd4eecaa0229f50671a0a6d8c406d8348933 Mon Sep 17 00:00:00 2001 From: Matthew Seaman Date: Fri, 13 Oct 2023 15:03:25 +0100 Subject: [PATCH 2/3] Update VERSION for added arm64 images New CPU architecture only, no functional change intended. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3eefcb9..7dea76e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.0.1 From 2fd8287eadc455440aba7f24a23cbd2651ba0d42 Mon Sep 17 00:00:00 2001 From: Matthew Seaman Date: Fri, 13 Oct 2023 15:07:41 +0100 Subject: [PATCH 3/3] Change the rebuild schedule to Mondays, Wednesdays and Fridays only Let's make at least a token attempt to economize on those build minutes. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 68b8512..0efec60 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: types: - published schedule: - - cron: '45 5 * * *' + - cron: '45 5 * * 1,3,5' workflow_dispatch: jobs: