We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2580aa commit 63e5bbdCopy full SHA for 63e5bbd
.github/workflows/build-app.yml
@@ -43,7 +43,11 @@ jobs:
43
- uses: actions/checkout@v4
44
45
- name: Build backend
46
- run: echo "Here we could do some proper build"
+ run: |
47
+ echo "Here we could do some proper build"
48
+ # To make each commit generate a new version we add a file to the artifact
49
+ echo "${{ github.ref }}" > app/backend/github-ref.txt
50
+
51
52
- name: Extract short SHA
53
run: echo "SHORT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
0 commit comments