Skip to content

Commit

Permalink
[skip ci] Update Yosys tag version mangling code.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark authored Dec 12, 2024
1 parent 37f4936 commit 5a0064e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/track-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
run: |
for tag in $(git -C yosys-src tag -l 'v*.*' | sort -rV); do
ref=$(git -C yosys-src rev-parse $tag)
branch=develop-${tag}
branch=develop-${tag/v/}
if ! git rev-parse -q --verify remotes/origin/${branch} >/dev/null; then
echo "New branch ${branch} with yosys-src ${ref}"
git -C yosys-src checkout ${ref}
# 2023-02-06: https://github.com/YosysHQ/sby/issues/229
echo "version=${tag}" >> $GITHUB_OUTPUT
echo "version=${tag/v/}" >> $GITHUB_OUTPUT
break
fi;
done
Expand Down

0 comments on commit 5a0064e

Please sign in to comment.