Constantin Simonis ca80649905
Some checks failed
build / build (push) Failing after 5m13s
whoops
2025-02-02 18:06:58 +01:00

27 lines
630 B
YAML

name: build
on: push
# pull_request:
# types:
# - closed
# branches:
# - main
jobs:
build:
runs-on: remote
steps:
- name: Checkout
uses: https://git.simonis.lol/actions/checkout@v2
- name: Login
uses: https://git.simonis.lol/actions/login@v2
with:
registry: git.simonis.lol
username: ${{ vars.DOCKER_USER }}
password: ${{ vars.DOCKER_PW }}
- name: Build
run: docker buildx build -t git.simonis.lol/projects/file-explorer:latest .
- name: Push
run: docker push git.simonis.lol/projects/file-explorer:latest