We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa617ff commit ab4bf5eCopy full SHA for ab4bf5e
.github/workflows/ci.yaml
@@ -693,6 +693,10 @@ jobs:
693
- name: Add SBT proxy repositories
694
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
695
696
+ # Extract the release tag
697
+ - name: Extract the release tag
698
+ run : echo "RELEASE_TAG=${GITHUB_REF#*refs/tags/}" >> $GITHUB_ENV
699
+
700
- name: Check compiler version
701
shell: bash
702
run : |
@@ -707,7 +711,6 @@ jobs:
707
711
run: |
708
712
./project/scripts/sbt dist/packArchive
709
713
sha256sum dist/target/scala3-* > dist/target/sha256sum.txt
710
- echo "RELEASE_TAG=${GITHUB_REF#*refs/tags/}" >> $GITHUB_ENV
714
715
- name: Create GitHub Release
716
id: create_gh_release
0 commit comments