Constantin Simonis aac3277198
Some checks failed
build / build (push) Failing after 22s
test
2024-12-04 15:32:53 +01:00

24 lines
578 B
YAML

name: build
on: push
# pull_request:
# types:
# - closed
# branches:
# - main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v1
with:
registry: git.simonis.lol
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PW }}
- name: build
working-directory: .docker
run: docker build -t git.simonis.lol/sites/file-explorer:latest .
- name: push
run: docker push git.simonis.lol/sites/file-explorer:latest