ci: add new build step
Some checks failed
/ build-and-push-image (push) Failing after 38s

This commit is contained in:
log101 2024-07-29 20:39:43 +03:00
parent ea723e4a7b
commit a4f542e15d
2 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Log in to the Container registry
uses: docker/login-action@v3

View File

@ -1,4 +1,4 @@
FROM golang:1.22.3-alpine as builder
FROM golang:1.22.3-alpine AS builder
WORKDIR /usr/src/app