We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c718bf6 commit 4067f9eCopy full SHA for 4067f9e
.github/workflows/build-app.yml
@@ -43,7 +43,10 @@ jobs:
43
- uses: actions/checkout@v4
44
45
- name: Build frontend
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/frontend/github-ref.txt
50
51
- name: Extract short SHA
52
run: echo "SHORT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
0 commit comments