0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-21 20:53:00 -05:00

Change golang version

This commit is contained in:
dragongoose 2023-07-04 21:03:12 -04:00
parent 4e89ba8637
commit 8e26a9fb5a
No known key found for this signature in database
GPG key ID: 50DB99B921579009
2 changed files with 3 additions and 3 deletions

View file

@ -1,11 +1,11 @@
pipeline: pipeline:
build: build:
image: golang:1.17 image: docker.io/golang:latests
commands: commands:
- go get - go get
- go build - go build
publish: publish:
image: woodpeckerci/plugin-docker-buildx image: docker.io/woodpeckerci/plugin-docker-buildx
settings: settings:
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64/v8,linux/ppc64le,linux/riscv64,linux/s390x platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64/v8,linux/ppc64le,linux/riscv64,linux/s390x
repo: codeberg.org/${CI_REPO_OWNER}/hello repo: codeberg.org/${CI_REPO_OWNER}/hello

View file

@ -1,4 +1,4 @@
FROM docker.io/golang:1.20.3 as builder FROM docker.io/golang:latest as builder
# Create and change to the app directory. # Create and change to the app directory.
WORKDIR /app WORKDIR /app