Skip to content

Commit 1769adb

Browse files
committed
fixing build
stupid runners
1 parent 5c8056b commit 1769adb

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13+
- name: Free Disk Space
14+
uses: jlumbroso/free-disk-space@main
15+
with:
16+
tool-cache: false
17+
android: true
18+
dotnet: true
19+
haskell: true
20+
large-packages: true
21+
docker-images: true
22+
swap-storage: false
23+
1324
- name: Checkout code
1425
uses: actions/checkout@v3
1526
with:
@@ -19,7 +30,7 @@ jobs:
1930
uses: actions/setup-go@v4
2031
id: go
2132
with:
22-
go-version: 1.24
33+
go-version: 1.25
2334

2435
- name: Run GoReleaser
2536
uses: goreleaser/goreleaser-action@v5
@@ -80,6 +91,17 @@ jobs:
8091
packages: write
8192
contents: read
8293
steps:
94+
- name: Free Disk Space
95+
uses: jlumbroso/free-disk-space@main
96+
with:
97+
tool-cache: true
98+
android: true
99+
dotnet: true
100+
haskell: true
101+
large-packages: true
102+
docker-images: true
103+
swap-storage: false
104+
83105
- name: Check out the repo
84106
uses: actions/checkout@v4
85107
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.24 AS builder
1+
FROM --platform=$BUILDPLATFORM golang:1.25 AS builder
22

33
ARG TARGETPLATFORM
44
ARG BUILDPLATFORM

0 commit comments

Comments
 (0)