Skip to content

Commit

Permalink
fix: upgrade some low impact dependencies to the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
sohrab- committed Dec 23, 2022
1 parent f4a3e73 commit fe2da83
Show file tree
Hide file tree
Showing 5 changed files with 448 additions and 512 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
run: |
if [[ ${{ steps.semantic-version.outputs.new-release-published }} = 'true' ]]; then
echo "New version: ${{ steps.semantic-version.outputs.new-release-version }}"
echo 'semver=${{ steps.semantic-version.outputs.new-release-version }}' >> $GITHUB_OUTPUTS
echo 'version=${{ steps.semantic-version.outputs.new-release-version }} (Build ${{ github.run_number }}-${{ github.run_attempt }})' >> $GITHUB_OUTPUTS
echo 'semver=${{ steps.semantic-version.outputs.new-release-version }}' >> $GITHUB_OUTPUT
echo 'version=${{ steps.semantic-version.outputs.new-release-version }} (Build ${{ github.run_number }}-${{ github.run_attempt }})' >> $GITHUB_OUTPUT
else
LATEST_TAG=$(git describe --abbrev=0 --tags | tr -d v)
echo "Existing version: ${LATEST_TAG}"
echo "semver=${LATEST_TAG}" >> $GITHUB_OUTPUTS
echo "version=${LATEST_TAG} (Build ${{ github.run_number }}-${{ github.run_attempt }})" >> $GITHUB_OUTPUTS
echo "semver=${LATEST_TAG}" >> $GITHUB_OUTPUT
echo "version=${LATEST_TAG} (Build ${{ github.run_number }}-${{ github.run_attempt }})" >> $GITHUB_OUTPUT
fi
# test
Expand Down
Loading

0 comments on commit fe2da83

Please sign in to comment.