We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b97aa7 commit 7b1dd62Copy full SHA for 7b1dd62
.github/workflows/cd.yml
@@ -5,18 +5,18 @@ on:
5
branches: [main]
6
7
jobs:
8
- Deploy:
+ deploy:
9
name: Deploy
10
runs-on: ubuntu-latest
11
12
steps:
13
- - name: Checkout code
+ - name: Check out code
14
uses: actions/checkout@v4
15
16
- - name: Set up Go toolchain
+ - name: Set up Go
17
uses: actions/setup-go@v5
18
with:
19
go-version: "1.25.1"
20
21
- - name: Build app using "buildprod" script
+ - name: Build app
22
run: ./scripts/buildprod.sh
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM --platform=linux/arm64 debian:stable-slim
+FROM --platform=linux/amd64 debian:stable-slim
2
3
RUN apt-get update && apt-get install -y ca-certificates
4
0 commit comments