Skip to content

Commit

Permalink
echo version to help with debug
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Alvarez <[email protected]>
  • Loading branch information
pendo324 committed Oct 18, 2024
1 parent ff4069d commit c2d1b19
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,17 +185,19 @@ jobs:
ignore: 'CHANGELOG.md'

get-intermediate-version:
name: Create intermediate version
name: Get intermediate version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get-intermediate-version.version }}
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Creates an intermediate version
- name: Gets an intermediate version string
id: calculate-version
run: |
version=$(git describe --match 'v[0-9]*' --dirty='.modified' --always --tags)
echo "${version}"
version="${version}-no-release"
echo "${version}"
echo "version=$version" >> ${GITHUB_OUTPUT}
release-linux:
Expand Down

0 comments on commit c2d1b19

Please sign in to comment.