All checks were successful
Build and Push Docker Image / build (push) Successful in 9m44s
28 lines
763 B
YAML
28 lines
763 B
YAML
name: Build and Push Docker Image
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Login to Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.phyllo.me
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: |
|
|
git.phyllo.me/devops/${{ github.event.repository.name }}:latest
|
|
git.phyllo.me/devops/${{ github.event.repository.name }}:${{ github.sha }}
|
|
build-args: |
|
|
BUILD_IDENTIFIER=${{ github.sha }} |