🐥 ssh-action-deploy #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Visualizar IP da VPS | |
on: | |
workflow_dispatch: # Aciona manualmente ou ajusta para on: [push] para disparar com push | |
jobs: | |
check-ip: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Exibir IP da VPS | |
run: | | |
echo "IP da VPS: ${{ secrets.IP }}" > ip.txt | |
cat ip.txt |