fix(ci): update URL of CI workflow dynamically

This commit is contained in:
Luke Tainton 2025-01-01 00:56:42 +00:00
parent bd7c145e0d
commit 6b67657897
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo

View File

@ -20,11 +20,13 @@ jobs:
run: exit 1 run: exit 1
get_latest_tag: get_latest_tag:
name: Get latest tag
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: check_manual_trigger needs: check_manual_trigger
outputs: outputs:
latesttag: ${{ steps.latesttag.outputs.latesttag }} latesttag: ${{ steps.latesttag.outputs.latesttag }}
steps: steps:
- uses: actions/checkout@v4.1.7
- name: Get latest tag - name: Get latest tag
id: latesttag id: latesttag
run: echo "latesttag=$(git describe --tags --abbrev=0)" >> "$GITEA_OUTPUT" run: echo "latesttag=$(git describe --tags --abbrev=0)" >> "$GITEA_OUTPUT"