Files
growup-crm/.gitea/workflows/deploy.yml
Cauê Faleiros 747e15eedd
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 3m43s
fix: Update Gitea Registry domain to gitea.blyzer.com.br
2026-02-03 12:03:17 -03:00

39 lines
1.1 KiB
YAML

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Gitea Container Registry
uses: docker/login-action@v2
with:
registry: gitea.blyzer.com.br
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
gitea.blyzer.com.br/${{ gitea.repository }}:latest
gitea.blyzer.com.br/${{ gitea.repository }}:${{ gitea.sha }}
- name: Deploy to Portainer
run: |
# Requires PORTAINER_WEBHOOK secret (e.g., https://portainer.domain.com/api/stacks/webhooks/...)
if [ -n "${{ secrets.PORTAINER_WEBHOOK }}" ]; then
echo "Triggering Portainer Webhook..."
curl -X POST "${{ secrets.PORTAINER_WEBHOOK }}"
else
echo "PORTAINER_WEBHOOK not set. Skipping deployment trigger."
fi