From 3e84924d148e73068b461077a88f1e28247bad12 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Tue, 2 Jul 2024 15:29:59 -0500 Subject: [PATCH] enable actions --- .gitea/workflows/demo.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..5d30c02 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,24 @@ +--- +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + release-image: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + env: + DOCKER_ORG: gitea + DOCKER_LATEST: latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 # all history for all branches and tags + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v3