We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a3802 commit 48bc63bCopy full SHA for 48bc63b
.github/workflows/deploy.yml
@@ -7,13 +7,19 @@ on:
7
jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
+ environment: Production
11
+ permissions:
12
+ contents: read
13
+ packages: write
14
+ deployments: write
15
steps:
- - uses: actions/checkout@v4
-
- - name: Deploy to Coolify
- uses: vuetifyjs/coolify-action@master
16
+ - uses: actions/checkout@v5
17
+ - uses: vuetifyjs/setup-action@master
18
+ - run: pnpm run build
19
+ - uses: vuetifyjs/coolify-action@master
20
with:
- token: ${{ secrets.GITHUB_TOKEN }}
21
imageName: mcp
22
+ dockerfilePath: ./apps/docs/Dockerfile
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
coolifyWebhook: ${{ secrets.COOLIFY_WEBHOOK }}
- coolifySecret: ${{ secrets.COOLIFY_SECRET }}
25
+ coolifySecret: ${{ secrets.COOLIFY_TOKEN }}
0 commit comments