From 6199c82342009f889eb8fb11e345b9c02f7744c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sun, 10 Sep 2023 15:21:13 +0200 Subject: [PATCH] add test gitea action --- .gitea/workflows/rebuild.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/rebuild.yml diff --git a/.gitea/workflows/rebuild.yml b/.gitea/workflows/rebuild.yml new file mode 100644 index 0000000..af7e199 --- /dev/null +++ b/.gitea/workflows/rebuild.yml @@ -0,0 +1,16 @@ +name: Rebuild Gitea container +run-name: ${{ gitea.actor }} is testing actions +on: [push] + +jobs: + Build container image: + runs-on: ubuntu-latest + steps: + - run: echo "Trigged by ${{ gitea.event_name }}" + - run: echo "Name of branch is ${{ gitea.ref }} and repository ${{ gitea.repository }}" + - name: Check out repository code + uses: actions/checkout@v3 + - name: List all files + run: | + ls ${{ gitea.workspace }} + - run: echo "Status is ${{ job.status }}"