We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 579debc commit 8b5eac4Copy full SHA for 8b5eac4
.github/workflows/release.yml
@@ -99,9 +99,9 @@ jobs:
99
run: |
100
cd ./src/http-server
101
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
102
- echo "CRATE_VERSION=$(cargo tag --dry-run -p=v ${{ inputs.version }})" >> $GITHUB_ENV
+ echo "CRATE_VERSION=$(cargo tag --no-tag --no-commit -p=v ${{ inputs.version }})" >> $GITHUB_ENV
103
else
104
- echo "CRATE_VERSION=$(cargo tag --dry-run -p=v prerelease pre.$(date +%Y%m%d%H%M%S))" >> $GITHUB_ENV
+ echo "CRATE_VERSION=$(cargo tag --no-tag --no-commit -p=v prerelease pre.$(date +%Y%m%d%H%M%S))" >> $GITHUB_ENV
105
fi
106
107
- name: Build binary
0 commit comments