baalajimaestro
bc103f7351
All checks were successful
/ Building (push) Successful in 23s
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
25 lines
586 B
YAML
25 lines
586 B
YAML
on:
|
|
push:
|
|
|
|
jobs:
|
|
Building:
|
|
runs-on: slave
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.baalajimaestro.me
|
|
username: ${{ gitea.repository_owner }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build & Push
|
|
uses: docker/build-push-action@master
|
|
with:
|
|
push: true
|
|
context: .
|
|
platforms: linux/amd64
|
|
tags: git.baalajimaestro.me/baalajimaestro/obsolute-paste:latest
|
|
|