26 lines
586 B
YAML
26 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
|
||
|
|