File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,18 @@ jobs:
3131 uses : needle-tools/deploy-to-needle-cloud-action@v1.0.1
3232 id : deploy
3333 with :
34- token : ${{ secrets.NEEDLE_CLOUD_TOKEN }}
35- name : vite-template
36- dir : ./dist
34+ token : ${{ secrets.NEEDLE_CLOUD_TOKEN }}
35+ name : vite-template
36+ dir : ./dist
3737 env :
3838 NODE_ENV : production
3939 NEEDLE_CLOUD_TOKEN : ${{ secrets.NEEDLE_CLOUD_TOKEN }}
4040
4141 - name : Display deployment URL
4242 run : |
43- echo "::notice title=Deployment URL::Deployed to ${{ steps.deploy.outputs.url }}"
43+ echo "::notice title=Deployment URL::Deployed to ${{ steps.deploy.outputs.url }}"
44+
45+ # Add to GitHub step summary (appears at bottom of workflow run)
46+ echo "## 🚀 Deployment Summary" >> $GITHUB_STEP_SUMMARY
47+ echo "Application has been successfully deployed!" >> $GITHUB_STEP_SUMMARY
48+ echo "**Deployment URL:** [${{ steps.deploy.outputs.url }}](${{ steps.deploy.outputs.url }})" >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments