baalajimaestro
b465718728
All checks were successful
/ Building (push) Successful in 3m13s
This reverts commit 0a0900477a
.
Signed-off-by: baalajimaestro <baalajimaestro@ptr.moe>
29 lines
683 B
YAML
29 lines
683 B
YAML
on:
|
|
push:
|
|
|
|
jobs:
|
|
Building:
|
|
runs-on: slave
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Startup DIND
|
|
run: /dockerd-entrypoint.sh dockerd &
|
|
shell: bash
|
|
|
|
- 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
|
|
|