fix: substituido _ po - no nome script ram e disk

This commit is contained in:
2026-05-19 02:52:39 +00:00
parent dc36dd2eef
commit fe367f4b04
4 changed files with 57 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Deploy via Script Externo
on:
push:
branches: [ main ]
workflow_dispatch: # Permite executar manualmente
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: 📥 Baixar código
uses: actions/checkout@v4
- name: 🔧 Configurar permissões
run: chmod +x scripts/*.sh
- name: 🚀 Executar deploy
run: ./scripts/deploy.sh
env:
DEPLOY_ENV: production
TIMESTAMP: $(date +%s)