Compare commits

...

5 Commits

Author SHA1 Message Date
Maxim Lebedev 945bff3f56
Merge branch 'master' into develop
/ docker (push) Successful in 1m37s Details
2023-11-06 04:31:13 +06:00
Maxim Lebedev cc798de6bc
Merge branch 'release/v0.2.7'
/ docker (push) Successful in 1m39s Details
2023-11-06 04:31:09 +06:00
Maxim Lebedev 6367abc9d8
🐳 Added VCS flag in container building step 2023-11-06 04:30:52 +06:00
Maxim Lebedev eb9a5017a7
🐳 Build and push docker container 2023-11-05 02:59:55 +06:00
Maxim Lebedev 63f2af9661
:contruction: Trying to make a docker build action 2023-11-03 22:35:22 +06:00
2 changed files with 45 additions and 1 deletions

View File

@ -0,0 +1,44 @@
---
on:
push:
branches:
- master
- develop
env:
DOCKER_REGISTRY: source.toby3d.me
jobs:
docker:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: https://gitea.com/actions/checkout@v3
- name: Set up QEMU
uses: https://gitea.com/docker/setup-qemu-action@v2
- name: Set up Docker BuildX
uses: https://gitea.com/docker/setup-buildx-action@v2
- name: Login to registry
uses: https://gitea.com/docker/login-action@v2
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ gitea.repository_owner }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: https://gitea.com/docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: "" # See https://gitea.com/gitea/act_runner/issues/119
with:
context: .
file: ./build/Dockerfile
push: true
tags: ${{ env.DOCKER_REGISTRY }}/${{ gitea.repository }}:${{ gitea.ref_name }}

View File

@ -7,7 +7,7 @@ FROM golang:alpine AS builder
WORKDIR /app
ENV CGO_ENABLED=0
ENV GOFLAGS=-mod=vendor
ENV GOFLAGS="-mod=vendor -buildvcs=true"
COPY go.mod go.sum *.go ./
COPY internal ./internal/