Skip to content

Commit

Permalink
worflow/test debug shell commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mahiki committed Jul 22, 2024
1 parent 8b92e59 commit 474169e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
- name: Get latest tag
id: get_tag
run: |
latest_tag=$(git describe --tags --abbrev=0)"
echo "latest_tag="${latest_tag}" >> $GITHUB_OUTPUT
latest_tag="$(git describe --tags --abbrev=0)"
echo latest_tag="${latest_tag}" >> $GITHUB_OUTPUT
- name: Get Poetry application version
id: app_version
run: |
poetry_app_version="$(poetry version --short)"
echo "poetry_app_version="v${poetry_app_version}" >> $GITHUB_OUTPUT
echo poetry_app_version="v${poetry_app_version}" >> $GITHUB_OUTPUT
- name: Print some workflow contexts
run: |
Expand Down

0 comments on commit 474169e

Please sign in to comment.