-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
outputs: | ||
cache_status_bottle: ${{ steps.determine-status.outputs.cache_status_bottle }} | ||
cache_status_demo: ${{ steps.determine-status.outputs.cache_status_demo }} | ||
cache_status_web: ${{ steps.determine-status.outputs.cache_status_web }} | ||
cache_status_e2e: ${{ steps.determine-status.outputs.cache_status_e2e }} | ||
steps: | ||
|
@@ -52,16 +53,19 @@ jobs: | |
run: | | ||
pnpx turbo run build --dry-run=json > result.json | ||
cache_status_bottle=$(jq -r '.tasks[] | select(.taskId == "@bottlesteam/bottle#build") | .cache.status' result.json) | ||
cache_status_demo=$(jq -r '.tasks[] | select(.taskId == "@bottlesteam/demo#build") | .cache.status' result.json) | ||
cache_status_web=$(jq -r '.tasks[] | select(.taskId == "@bottlesteam/web#build") | .cache.status' result.json) | ||
pnpx turbo run test:e2e --dry-run=json > result2.json | ||
cache_status_e2e=$(jq -r '.tasks[] | select(.taskId == "@bottlesteam/e2e#test:e2e") | .cache.status' result2.json) | ||
echo "cache_status_bottle=$cache_status_bottle" >> $GITHUB_OUTPUT | ||
echo "cache_status_bottle=$cache_status_demo" >> $GITHUB_OUTPUT | ||
echo "cache_status_web=$cache_status_web" >> $GITHUB_OUTPUT | ||
echo "cache_status_e2e=$cache_status_e2e" >> $GITHUB_OUTPUT | ||
- name: Cache Status Print | ||
run: | | ||
echo "cache_status_bottle: ${{ steps.determine-status.outputs.cache_status_bottle }}" | ||
echo "cache_status_demo: ${{ steps.determine-status.outputs.cache_status_demo }}" | ||
echo "cache_status_web: ${{ steps.determine-status.outputs.cache_status_web }}" | ||
echo "cache_status_e2e: ${{ steps.determine-status.outputs.cache_status_e2e }}" | ||
|
@@ -125,6 +129,59 @@ jobs: | |
-d "$DATA" \ | ||
${{ secrets.SLACK_WEBHOOK_URL }} | ||
Deploy_Demo_to_Vercel: | ||
# deploy Demo to vercel | ||
runs-on: ubuntu-latest | ||
env: | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_Demo }} | ||
needs: Setup | ||
if: needs.Setup.outputs.cache_status_demo == 'MISS' | ||
steps: | ||
# checkout and install pnpm | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
run_install: false | ||
# setup node | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'pnpm' | ||
|
||
- name: Deploy to Vercel if needed | ||
run: | | ||
npm install --global vercel@latest | ||
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_ACCESS_TOKEN }} | ||
vercel build --token=${{ secrets.VERCEL_ACCESS_TOKEN }} | ||
vercel deploy --prebuilt --token=${{ secrets.VERCEL_ACCESS_TOKEN }} | ||
- name: Get Vercel Preview | ||
uses: zentered/[email protected] | ||
id: vercel_preview_url | ||
env: | ||
VERCEL_TOKEN: ${{ secrets.VERCEL_ACCESS_TOKEN }} | ||
with: | ||
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 }} | ||
Deploy_Web_to_Vercel: | ||
# deploy Web to vercel | ||
runs-on: ubuntu-latest | ||
|
This file contains 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