From 9a90c33b1094256ba48a35a1570bb38f43945e87 Mon Sep 17 00:00:00 2001 From: ties Date: Tue, 27 Aug 2024 15:43:57 +0000 Subject: [PATCH] Add .gitea/workflows/deploy.yaml --- .gitea/workflows/deploy.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..f77d3df --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,18 @@ +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: print + KUBECONFIG_DATA: ${{ secrets.KUBECONFIG_DATA }} \ No newline at end of file