24 lines
598 B
YAML
24 lines
598 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 and Push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
tags: git.simonis.lol/projects/file-explorer:test
|
|
push: true |