gitea-actions-test/.gitea/workflows/test.yaml
Patrick van der Bleek | HCS company 0d8234ad8c
Some checks failed
Testing Gitea Actions / Build (push) Failing after 7s
Update .gitea/workflows/test.yaml
2026-02-03 13:09:41 +00:00

37 lines
857 B
YAML

name: Testing Gitea Actions
run-name: Building images in ${{ gitea.repository }}
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
# services:
# docker:
# image: docker:dind
# env:
# DOCKER_HOST: tcp://docker:2376
# DOCKER_TLS_VERIFY: ""
steps:
- uses: actions/checkout@v4
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: kubernetes
driver-opts: |
namespace=gitea
- name: Build Docker Image
env:
BRANCH_NAME: ${{ github.ref_name }}
SHORT_HASH: ${{ github.sha }}
run: |
# Build the image with the commit hash tag
docker build -t test-image:${BRANCH_NAME}-${SHORT_HASH:0:5} .