2024-12-04 17:37:10 +00:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-12-11 21:21:41 +00:00
|
|
|
runs-on: remote
|
2024-12-04 17:37:10 +00:00
|
|
|
steps:
|
|
|
|
|
2025-02-02 17:31:21 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: https://git.simonis.lol/actions/checkout@v2
|
2024-12-04 17:37:10 +00:00
|
|
|
|
2025-02-02 17:31:21 +00:00
|
|
|
- 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
|