Skip to content

Commit 738f625

Browse files
committed
1 parent 7b34342 commit 738f625

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: Releases
2-
32
on:
43
push:
5-
tags:
6-
- '*'
7-
4+
env:
5+
GOCRON2_VERSION: 1.6.6
86
jobs:
97
build:
108
runs-on: ubuntu-latest
@@ -33,7 +31,7 @@ jobs:
3331
file: ./all/Dockerfile
3432
tags: ${{ steps.meta.outputs.tags }}
3533
build-args: |
36-
GOCRON2_VERSION=1.6.5
34+
GOCRON2_VERSION=${{env.GOCRON2_VERSION}}
3735
- id: meta_server
3836
uses: docker/metadata-action@v5
3937
with:
@@ -53,7 +51,7 @@ jobs:
5351
file: ./server/Dockerfile
5452
tags: ${{ steps.meta_server.outputs.tags }}
5553
build-args: |
56-
GOCRON2_VERSION=1.6.5
54+
GOCRON2_VERSION=${{env.GOCRON2_VERSION}}
5755
- uses: actions/checkout@v4
5856
- uses: christian-korneck/update-container-description-action@v1
5957
env:

Dockerfile-0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 AS builder
1+
FROM golang:1.22 AS builder
22

33
ARG TARGETARCH
44
ARG GOCRON2_VERSION

0 commit comments

Comments
 (0)