httpd/.gitea/workflows/build.yaml

35 lines
1.1 KiB
YAML
Raw Normal View History

2024-08-30 17:34:42 +02:00
name: build
on:
push:
branches: [ master ]
pull_request:
# Variables: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables
jobs:
build:
steps:
- uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
2024-08-30 17:43:31 +02:00
- name: Get Meta
2024-08-30 17:44:06 +02:00
id: meta
2024-08-30 17:43:31 +02:00
run: |
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
2024-08-30 17:45:42 +02:00
REPO_BRANCH=$(git rev-parse --abbrev-ref HEAD)
2024-08-30 17:34:42 +02:00
- name: Build and push Docker image
uses: https://github.com/docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
2024-08-30 17:45:42 +02:00
tags: "registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:latest,registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_BRANCH }}"
2024-08-30 17:39:05 +02:00
# depends on lint