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