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