From b99418bde3f889cee16211062e857dc2c754f252 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 16 Sep 2024 15:06:06 +0200 Subject: [PATCH] .gitea/workflows/gitea-ci.yaml aktualisiert --- .gitea/workflows/gitea-ci.yaml | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index 394c807..bb32353 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -5,15 +5,19 @@ on: [push] jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - 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 - - 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." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v2 + with: # replace it with your local IP + config-inline: | + [registry."registry.tuxnet.lan"] + http = true + insecure = true \ No newline at end of file