Skip to content

Commit 7b1dd62

Browse files
committed
Use amd64 image for Gcloud
1 parent 0b97aa7 commit 7b1dd62

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ on:
55
branches: [main]
66

77
jobs:
8-
Deploy:
8+
deploy:
99
name: Deploy
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- name: Checkout code
13+
- name: Check out code
1414
uses: actions/checkout@v4
1515

16-
- name: Set up Go toolchain
16+
- name: Set up Go
1717
uses: actions/setup-go@v5
1818
with:
1919
go-version: "1.25.1"
2020

21-
- name: Build app using "buildprod" script
21+
- name: Build app
2222
run: ./scripts/buildprod.sh

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm64 debian:stable-slim
1+
FROM --platform=linux/amd64 debian:stable-slim
22

33
RUN apt-get update && apt-get install -y ca-certificates
44

0 commit comments

Comments
 (0)