3 Commits

Author SHA1 Message Date
jzitnik 5fe3e345c7 another try
Build and Publish Package (amd64) / docker (push) Successful in 2m52s
2026-07-25 17:28:34 +02:00
jzitnik b76dc19006 fix: Build again
Build and Publish Package (amd64) / docker (push) Failing after 2m0s
2026-07-25 17:23:55 +02:00
jzitnik f52ea02ceb fix: Build
Build and Publish Package (amd64) / docker (push) Failing after 1m23s
2026-07-25 17:20:46 +02:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -54,5 +54,5 @@ jobs:
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=registry,ref=gitea.jzitnik.dev/${{ steps.string_prep.outputs.owner }}/${{ steps.string_prep.outputs.repo }}:buildcache
cache-to: type=gha,mode=max cache-to: type=registry,ref=gitea.jzitnik.dev/${{ steps.string_prep.outputs.owner }}/${{ steps.string_prep.outputs.repo }}:buildcache,mode=max
+2 -2
View File
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine AS builder FROM golang:1.26-alpine AS builder
WORKDIR /app WORKDIR /app
RUN apk add --no-cache git ca-certificates RUN apk add --no-cache git ca-certificates
@@ -7,7 +7,7 @@ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . . COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o mautrix-ntfy main.go RUN go build -ldflags="-w -s" -o mautrix-ntfy .
FROM alpine:latest FROM alpine:latest