fix: user vars

This commit is contained in:
2026-03-08 23:19:15 -03:00
parent 09eab1c8bd
commit b755efc177

View File

@@ -5,12 +5,12 @@ on:
jobs:
build-and-deploy:
runs-on: ubuntu-latest # ou o label do seu runner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Deploy to CapRover
uses: caprover/deploy-from-github@v1.0.1
with:
server: ${{ secrets.CAPROVER_SERVER }}
app: 'meu-directus'
server: ${{ vars.CAPROVER_SERVER }}
app: ${{ vars.APP_NAME }}
token: ${{ secrets.CAPROVER_APP_TOKEN }}