test
Some checks failed
Base image build / docker (push) Failing after 0s

This commit is contained in:
2025-06-30 12:44:07 -07:00
parent c35be7b861
commit 2676e90641

View File

@@ -2,15 +2,47 @@ name: Base image build
run-name: ${{ gitea.actor }} is building the docker base image. run-name: ${{ gitea.actor }} is building the docker base image.
on: [push] on: [push]
defaults:
run:
shell: bash
jobs: jobs:
build: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." - name: Checkout
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
image: gitea.fithwum.tech/base-image
tags: gitea.fithwum.tech/fithwum/base-image:debian-buster
containerfiles: |
./debian/buster/Dockerfile
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
image: gitea.fithwum.tech/base-image
tags: gitea.fithwum.tech/fithwum/base-image:debian-bullseye
containerfiles: |
./debian/bullseye/Dockerfile
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
image: gitea.fithwum.tech/base-image
tags: gitea.fithwum.tech/fithwum/base-image:debian-bookworm
containerfiles: |
./debian/bookworm/Dockerfile
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "The workflow is now ready to test your code on the runner." - run: echo "The workflow is now ready to test your code on the runner."