Skip to content

Commit

Permalink
Small update to post-merge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jfharden committed Jan 29, 2024
1 parent 6e37686 commit 89ece2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
needs:
- test
outputs:
release: "${{ steps.tag-release.outputs.release }}"
version: "${{ steps.tag-release.outputs.version }}"
release: "${{ steps.check-for-existing-release.outputs.release }}"
version: "${{ steps.check-for-existing-release.outputs.version }}"

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- shell: bash
id: tag-release
name: tag-release
id: check-for-existing-release
name: check-for-existing-release
run: |
VERSION=$(yq -oy '.package.version' Cargo.toml)
Expand All @@ -37,7 +37,7 @@ jobs:
exit 0
fi
echo "Continuing to create release tag for $VERSION"
echo "Release required for $VERSION"
echo "release=true" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 89ece2d

Please sign in to comment.