test-env/.gitea/workflows/build-publish.yaml

41 lines
1.2 KiB
YAML

name: ci
on:
push:
branches: [ main, techknowlogick-patch-1 ]
jobs:
docker:
strategy:
matrix:
arch: ['ubuntu-latest', 'arm-ubuntu-latest']
go-version: ['1.20']
git-version: ['2.38.4']
golangci-lint-version: ['1.51.2']
runs-on: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v3
- name: generate docker tag
run: |
if [ "${{ matrix.arch }}" == "ubuntu-latest" ]; then
echo ::set-output name=value::amd64
else
echo ::set-output name=value::arm64
fi
id: arch
- name: setup buildx
uses: https://github.com/docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: https://github.com/docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: build image
uses: https://github.com/docker/build-push-action@v4
with:
tags: gitea/test_env:linux-${{ matrix.go-version }}-${{ steps.arch.outputs.value }}
build-args: |
GOLANG_VERSION=${{ matrix.go-version }}
GIT_VERSION=${{ matrix.git-version }}
GOLANGCI_LINT_VERSION=${{ matrix.golangci-lint-version }}