We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d03090c commit ea4c69aCopy full SHA for ea4c69a
.github/workflows/trigger-jitpack-build.yml
@@ -7,7 +7,11 @@ jobs:
7
build:
8
runs-on: ubuntu-latest
9
steps:
10
+ - name: Get short Git commit SHA
11
+ id: sha
12
+ run: echo "short=${GITHUB_SHA:0:10}" >> $GITHUB_OUTPUT
13
+
14
- name: Trigger Jitpack Build
15
run: |
- JITPACK_URL="https://jitpack.io/com/github/${{ github.repository }}/${GITHUB_SHA:0:10}/build.log"
16
+ JITPACK_URL="https://jitpack.io/com/github/${{ github.repository }}/${{ steps.sha.outputs.short }}/build.log"
17
curl -s -m 300 ${JITPACK_URL}
0 commit comments