We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e11b57a commit aa7ff13Copy full SHA for aa7ff13
.github/workflows/build-dev-and-ci.yml
@@ -54,6 +54,18 @@ jobs:
54
git rev-parse --abbrev-ref HEAD | grep master > /dev/null || export INDEX_HTML_HEAD_REPLACEMENT=""
55
sed -i "s|<!-- INDEX_HTML_HEAD_REPLACEMENT -->|$INDEX_HTML_HEAD_REPLACEMENT|" frontend/index.html
56
57
+ - name: 💬 Comment build link
58
+ if: github.event_name == 'push'
59
+ uses: actions/github-script@v6
60
+ with:
61
+ script: |
62
+ github.rest.repos.createCommitComment({
63
+ owner: context.repo.owner,
64
+ repo: context.repo.repo,
65
+ commit_sha: context.sha,
66
+ body: '| 📦 **Build Complete for** ${{ github.sha }} |\n|-|\n| - |'
67
+ })
68
+
69
- name: 🌐 Build Graphite web code
70
env:
71
NODE_ENV: production
0 commit comments