2024-12-04 14:51:27 +01:00
|
|
|
name: build
|
|
|
|
on: push
|
|
|
|
# pull_request:
|
|
|
|
# types:
|
|
|
|
# - closed
|
|
|
|
# branches:
|
|
|
|
# - main
|
|
|
|
jobs:
|
2024-12-04 14:57:07 +01:00
|
|
|
build:
|
2024-12-04 14:52:36 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-12-04 14:51:27 +01:00
|
|
|
steps:
|
2024-12-04 14:57:07 +01:00
|
|
|
- name: build
|
|
|
|
working-directory: .docker
|
|
|
|
run: docker build -t git.simonis.lol/sites/file-explorer:latest .
|
2024-12-04 14:51:27 +01:00
|
|
|
|