All checks were successful
build docker container automatically / build (push) Successful in 3m19s
36 lines
922 B
YAML
36 lines
922 B
YAML
name: build docker container automatically
|
|
run-name: docker build
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: get commit hash
|
|
id: get_hash
|
|
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: git.tmoron.fr
|
|
username: ${{ secrets.PUSH_USERNAME }}
|
|
password: ${{ secrets.PUSH_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: "{{defaultContext}}:${{ input.path }}"
|
|
push: true
|
|
tags: git.tmoron.fr/${{ gitea.repository }}:${{ steps.get_hash.outputs.sha_short }}
|