diff --git a/.github/workflows/create-release-artifacts.yaml b/.github/workflows/create-release-artifacts.yaml index d708d370..e8d55561 100644 --- a/.github/workflows/create-release-artifacts.yaml +++ b/.github/workflows/create-release-artifacts.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: Get version from tag shell: bash - run: | # Turn "refs/tags/vX.Y.Z" into "X.Y.Z" + run: | # Turn "vX.Y.Z" into "X.Y.Z" VERSION="${{ github.ref_name }}" echo "version=${VERSION#v}" >> $GITHUB_ENV - uses: actions/checkout@v2