fix: allow all_dynamic API keys to access issues across all scoped or… #342
This file contains hidden or 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: Deploy to Dokploy | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy Frontend | |
| run: | | |
| curl -s -X POST "http://13.38.180.239:3000/api/application.deploy" \ | |
| -H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"applicationId":"FghZLWdqlC7AtZTwh3jpr"}' | |
| - name: Deploy Backend | |
| run: | | |
| curl -s -X POST "http://13.38.180.239:3000/api/application.deploy" \ | |
| -H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"applicationId":"5EXdMViqWNbOaN_pASmSM"}' |