We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5504e6d commit 2c181d9Copy full SHA for 2c181d9
1 file changed
.github/workflows/release.yml
@@ -25,8 +25,12 @@ jobs:
25
id: extract_version
26
shell: bash
27
run: |
28
- echo "package_version=${{ github.ref_name }}" >> $GITHUB_ENV
29
- echo "assembly_version=$(echo ${{ github.ref_name }} | grep -o '^[0-9]*\.[0-9]*\.[0-9]*').0" >> $GITHUB_ENV
+ PACKAGE_VERSION="${{ github.ref_name }}"
+ ASSEMBLY_VERSION="$(echo ${{ github.ref_name }} | grep -o '^[0-9]*\.[0-9]*\.[0-9]*').0"
30
+ echo "package_version=$PACKAGE_VERSION" >> $GITHUB_OUTPUT
31
+ echo "assembly_version=$ASSEMBLY_VERSION" >> $GITHUB_OUTPUT
32
+ echo "Package Version: $PACKAGE_VERSION"
33
+ echo "Assembly Version: $ASSEMBLY_VERSION"
34
35
- name: Build projects
36
0 commit comments