mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
build(ci): use the head commit sha in PR versions
Ref: https://stackoverflow.com/a/68068674 Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
0b18489327
commit
0bebd396df
1 changed files with 2 additions and 0 deletions
2
.github/workflows/pipeline.yml
vendored
2
.github/workflows/pipeline.yml
vendored
|
@ -36,6 +36,7 @@ jobs:
|
||||||
echo "git describe --tags: $(git describe --tags `git rev-list --tags --max-count=1`)"
|
echo "git describe --tags: $(git describe --tags `git rev-list --tags --max-count=1`)"
|
||||||
echo "git tag: $(git tag --sort=-committerdate | head -n 1)"
|
echo "git tag: $(git tag --sort=-committerdate | head -n 1)"
|
||||||
echo "github_ref: $GITHUB_REF"
|
echo "github_ref: $GITHUB_REF"
|
||||||
|
echo "github_head_sha: ${{ github.event.pull_request.head.sha }}"
|
||||||
git tag -l
|
git tag -l
|
||||||
- name: Determine git current SHA and latest tag
|
- name: Determine git current SHA and latest tag
|
||||||
id: git-version
|
id: git-version
|
||||||
|
@ -50,6 +51,7 @@ jobs:
|
||||||
GIT_SHA=$(git rev-parse --short HEAD)
|
GIT_SHA=$(git rev-parse --short HEAD)
|
||||||
PR_NUM=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
|
PR_NUM=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
|
||||||
if [[ $PR_NUM != "null" ]]; then
|
if [[ $PR_NUM != "null" ]]; then
|
||||||
|
GIT_SHA=$(echo "${{ github.event.pull_request.head.sha }}" | cut -c1-8)
|
||||||
GIT_SHA="pr-${PR_NUM}/${GIT_SHA}"
|
GIT_SHA="pr-${PR_NUM}/${GIT_SHA}"
|
||||||
fi
|
fi
|
||||||
echo "GIT_SHA=$GIT_SHA" >> $GITHUB_OUTPUT
|
echo "GIT_SHA=$GIT_SHA" >> $GITHUB_OUTPUT
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue