Skip to content

Commit

Permalink
ci: print everything
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPedroGHM committed Oct 16, 2023
1 parent 5bbb6e1 commit 2cfade2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
sanity: ${{ steps.semantic-release.outputs.sanity }}
needs: Test
runs-on: ubuntu-latest
environment: release
concurrency: publish
permissions:
contents: write
Expand All @@ -39,7 +38,12 @@ jobs:
poetry run semantic-release version --no-vcs-release --skip-build
NEW_VERSION="$(git describe)"
echo $NEW_VERSION
echo "newtag=$NEW_VERSION" >> $GITHUB_OUTPUT
echo $NEW_VERSION
echo "newtag=$NEW_VERSION"
echo 'newtag=$NEW_VERSION'
echo "newtag=${NEW_VERSION}"
echo 'newtag=${NEW_VERSION}'
echo 'newtag=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "sanity=gone" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down

0 comments on commit 2cfade2

Please sign in to comment.