Files
test-actions/.gitea/workflows/demo.yaml
Alex Matsuev cc7dbe2123
All checks were successful
Context testing / dump_contexts_to_log (push) Successful in 2s
Build and release project / Explore-Gitea-Actions (push) Successful in 51s
Update actions
2025-11-22 13:03:35 +03:00

48 lines
1.2 KiB
YAML

name: Build and release project
run-name: Started by ${{ gitea.actor }}
on:
push:
branches:
- main
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Job start
run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
- name: Install GoLang v1.25.4
uses: actions/setup-go@v6
with:
go-version: "1.25.4"
- name: Check out repository code
uses: actions/checkout@v6
- name: Build and test application
run: |
mkdir bin
GOOS=linux GOARCH=amd64 go build -o ./bin/metrics ./cmd
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to container registry
uses: docker/login-action@v3
with:
registry: sirius.klsh.ru
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_SECRET }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: sirius.klsh.ru/${{ gitea.repository_owner }}/test-app:latest
- name: Job status
run: echo "This job's status is ${{ job.status }}."