baalajimaestro
5cd0ba67e2
Some checks failed
/ Building (push) Failing after 49s
This reverts commit 0a0900477a
.
Signed-off-by: baalajimaestro <baalajimaestro@ptr.moe>
25 lines
566 B
YAML
25 lines
566 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.ptr.moe
|
|
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.ptr.moe/baalajimaestro/obsolute-paste:latest
|
|
|