We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3c2208 commit 35053f2Copy full SHA for 35053f2
1 file changed
.github/workflows/build.yml
@@ -12,8 +12,15 @@ on:
12
- chore/tag-cd
13
14
jobs:
15
- Deploy-Production:
+ generate_tag:
16
+ uses: ./.github/workflows/heaver-tagging.yml # 태깅 워크플로우 실행
17
+ with: {}
18
+
19
+ Deploy-Preview:
20
runs-on: ubuntu-latest
21
+ needs: generate_tag
22
+ env:
23
+ VERSION_TAG: ${{ needs.generate_tag.outputs.version }}
24
steps:
25
- uses: actions/checkout@v3
26
@@ -28,3 +35,6 @@ jobs:
28
35
29
36
- name: Deploy Project Artifacts to Vercel
30
37
run: vercel deploy --prebuilt --target=${{ env.VERCEL_ENV }} --token=${{ secrets.VERCEL_TOKEN }}
38
39
+ - name: Output Tag Version
40
+ run: echo "Deployment completed for version $VERSION_TAG"
0 commit comments