diff --git a/.github/workflows/build-ubuntu.yaml b/.github/workflows/build-ubuntu.yaml new file mode 100644 index 0000000..8c3ffa8 --- /dev/null +++ b/.github/workflows/build-ubuntu.yaml @@ -0,0 +1,102 @@ +name: Build and push Ubuntu image + +on: + push: + tags: + - 'v*.*.*' + paths: + - ubuntu/** + schedule: + - cron: "0 0 * * 1" # Every Monday at 00:00 + workflow_dispatch: + +env: + REGISTRY: docker.io + IMAGE_OWNER: glitchcrab + IMAGE_NAME: ubuntu-debug + +jobs: + debug_info: + name: Debug info + runs-on: self-hosted + steps: + - name: Print github context JSON + run: | + cat <