Skip to content

Commit

Permalink
Update build image
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Jan 27, 2024
1 parent 7bec796 commit 7bda088
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ on:
schedule:
# At 00:00 on Monday.
- cron: "0 0 * * 1"

workflow_dispatch:

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

jobs:
build:
name: Build
Expand All @@ -39,14 +40,17 @@ jobs:
- "1.28"
- "1.29"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

# - name: Setup upterm session
# uses: lhotari/action-upterm@v1

- name: Publish to GitHub Container Registry
env:
Expand Down
2 changes: 1 addition & 1 deletion nonroot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RELEASE ?= 1.20
VERSION ?= $(shell curl -fsSL https://storage.googleapis.com/kubernetes-release/release/stable-$(RELEASE).txt)
SRC_REG ?=

DOCKER_PLATFORMS := linux/amd64 linux/386 linux/arm64 linux/ppc64le linux/s390x
DOCKER_PLATFORMS := linux/amd64 linux/arm64
PLATFORM ?= $(firstword $(DOCKER_PLATFORMS))
TAG = $(VERSION)_$(subst /,_,$(PLATFORM))

Expand Down
2 changes: 1 addition & 1 deletion root/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RELEASE ?= 1.20
VERSION ?= $(shell curl -fsSL https://storage.googleapis.com/kubernetes-release/release/stable-$(RELEASE).txt)
SRC_REG ?=

DOCKER_PLATFORMS := linux/amd64 linux/386 linux/arm64 linux/ppc64le linux/s390x
DOCKER_PLATFORMS := linux/amd64 linux/arm64
PLATFORM ?= $(firstword $(DOCKER_PLATFORMS))
TAG = $(VERSION)_$(subst /,_,$(PLATFORM))

Expand Down

0 comments on commit 7bda088

Please sign in to comment.