mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
update auto_release workflow
This commit is contained in:
parent
e5bc11a20d
commit
01966db472
17
.github/workflows/auto_release.yml
vendored
17
.github/workflows/auto_release.yml
vendored
|
@ -40,20 +40,9 @@ jobs:
|
||||||
- name: Get Previous Tag and Build Number
|
- name: Get Previous Tag and Build Number
|
||||||
id: build_number
|
id: build_number
|
||||||
run: |
|
run: |
|
||||||
PAGE=1
|
LATEST_TAG=$(curl -sH "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
||||||
LATEST_TAG=""
|
"https://api.github.com/repos/${{ github.repository }}/tags?per_page=100" | \
|
||||||
while true; do
|
jq -r --arg FOLDER "$FOLDER_CHANGED" --arg VERSION "$SEAFILE_VERSION" '.[] | select(.name | startswith($FOLDER + "-" + $VERSION)) | .name' | sort -V | tail -1)
|
||||||
TAGS=$(curl -sH "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
"https://api.github.com/repos/${{ github.repository }}/tags?per_page=100&page=$PAGE")
|
|
||||||
if [[ -z "$TAGS" ]]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
TAG=$(echo "$TAGS" | jq -r --arg FOLDER "$FOLDER_CHANGED" --arg VERSION "$SEAFILE_VERSION" '.[] | select(.name | startswith($FOLDER + "-" + $VERSION)) | .name' | sort -V | tail -1)
|
|
||||||
if [[ -n "$TAG" ]] && [[ -z "$LATEST_TAG" || "$TAG" > "$LATEST_TAG" ]]; then
|
|
||||||
LATEST_TAG="$TAG"
|
|
||||||
fi
|
|
||||||
PAGE=$((PAGE + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "LATEST_TAG=$LATEST_TAG"
|
echo "LATEST_TAG=$LATEST_TAG"
|
||||||
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
|
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
|
||||||
|
|
Loading…
Reference in a new issue