From 22d8a8b2be28048e3e897b4ecff1895deeaa8ff7 Mon Sep 17 00:00:00 2001 From: ties Date: Thu, 29 Aug 2024 13:44:04 +0000 Subject: [PATCH] Add .gitea/workflows/push.yaml --- .gitea/workflows/push.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/push.yaml diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml new file mode 100644 index 0000000..6ae7813 --- /dev/null +++ b/.gitea/workflows/push.yaml @@ -0,0 +1,19 @@ +name: Deploy +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Docker Test + uses: docker://git.ties.one/public/custom_act_runner:latest + env: + action: package + REPO_SECRET: ${{ secrets.REPO_SECRET }} + GITHUB_CONTEXT: ${{ toJson(github) }} \ No newline at end of file