diff --git a/.github/workflows/ci-preview.yaml b/.github/workflows/ci-preview.yaml index 06f3fbd..c5188c3 100644 --- a/.github/workflows/ci-preview.yaml +++ b/.github/workflows/ci-preview.yaml @@ -110,6 +110,19 @@ jobs: vercel_project_id: ${{ secrets.VERCEL_PROJECT_ID_BOTTLE }} - name: Get URL run: echo "https://${{ steps.vercel_preview_url.outputs.preview_url }}" + + - name: Send Slack Notification + env: + DATA: | + { + "channel": "C07N47FH04Q", + "text": "<@U07L87GGHJS> ν…ŒμŠ€νŠΈμ€‘~ πŸ‘‰ https://${{ steps.vercel_preview_url.outputs.preview_url }}", + } + run: | + curl -X POST -H "Content-Type: application/json" \ + -d "$DATA" \ + ${{ secrets.SLACK_WEBHOOK_URL }} + - name: Send Discord Notification env: DATA: | diff --git a/turbo.json b/turbo.json index 463f8b0..876b775 100644 --- a/turbo.json +++ b/turbo.json @@ -6,7 +6,8 @@ "build": { "dependsOn": ["^build"], "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": [".next/**", "!.next/cache/**", "dist/**"] + "outputs": [".next/**", "!.next/cache/**", "dist/**"], + "cache": false }, "test:e2e": { "dependsOn": ["^build"]