Add .gitea/workflows/build-push.yml
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
This commit is contained in:
31
.gitea/workflows/build-push.yml
Normal file
31
.gitea/workflows/build-push.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
name: Build and Push Docker Image
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- 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@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: |
|
||||
git.phyllo.me/devops/fedora-runner-image:${{ github.ref_name }}-${{ github.sha }}
|
||||
git.phyllo.me/devops/fedora-runner-image:${{ github.ref_name }}-latest
|
||||
build-args: |
|
||||
BUILD_IDENTIFIER=${{ github.sha }}
|
||||
Reference in New Issue
Block a user