commit 396f64f47f9d4328f46533705bc9063419e738e4 Author: pius-coder Date: Wed Apr 15 23:28:21 2026 +0100 feat: initial setup with Gitea Actions workflows diff --git a/.gitea/workflows/deploy-dev.yml b/.gitea/workflows/deploy-dev.yml new file mode 100644 index 0000000..2a8b0e7 --- /dev/null +++ b/.gitea/workflows/deploy-dev.yml @@ -0,0 +1,17 @@ +name: Deploy Client to Development + +on: + push: + branches: + - dev + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Trigger Coolify Deploy (Dev) + run: | + curl --request GET \ + --url "${{ secrets.COOLIFY_WEBHOOK_DEV }}" \ + --header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \ + --fail \ No newline at end of file diff --git a/.gitea/workflows/deploy-prod.yml b/.gitea/workflows/deploy-prod.yml new file mode 100644 index 0000000..0793690 --- /dev/null +++ b/.gitea/workflows/deploy-prod.yml @@ -0,0 +1,17 @@ +name: Deploy Client to Production + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Trigger Coolify Deploy (Prod) + run: | + curl --request GET \ + --url "${{ secrets.COOLIFY_WEBHOOK_PROD }}" \ + --header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \ + --fail \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..6e2280b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# ImportEx Client