Skip to content

Commit

Permalink
fix(ci): github release typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasfe committed Jun 16, 2022
1 parent 9464fc3 commit 83e8cde
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,14 +282,6 @@ jobs:
platforms: linux/amd64
push: true
tags: tamasfe/taplo:full,tamasfe/taplo:${{ env.RELEASE_VERSION }}-full,tamasfe/taplo:${{ env.RELEASE_VERSION }}-full-alpine
- name: Update repo description
uses: peter-evans/dockerhub-description@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: tamasfe/taplo
short-description: Portable images for Taplo.
readme-path: ./docker/README.md

cli_binaries:
name: Publish and release Taplo CLI binaries
Expand Down Expand Up @@ -356,12 +348,12 @@ jobs:
cd target/${{ matrix.target }}/release
if [[ "${{ matrix.target }}" == "x86_64-pc-windows-gnu" ]]
then
zip "../../../taplo-$RELEASE_VERSION-${{ matrix.name }}" ${{ matrix.base }}
zip "../../../taplo-${{ matrix.name }}" ${{ matrix.base }}
else
tar czvf "../../../taplo-$RELEASE_VERSION-${{ matrix.name }}" ${{ matrix.base }}
tar czvf "../../../taplo-${{ matrix.name }}" ${{ matrix.base }}
rm taplo
mv taplo-full taplo
tar czvf "../../../taplo-full-$RELEASE_VERSION-${{ matrix.name }}" ${{ matrix.base }}
tar czvf "../../../taplo-full-${{ matrix.name }}" ${{ matrix.base }}
fi
cd -
Expand All @@ -370,7 +362,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }}
name: Taplo CLI $${{ env.RELEASE_VERSION }}
name: Taplo CLI ${{ env.RELEASE_VERSION }}
# Only for merging three releases
draft: true
prerelease: false
Expand Down

0 comments on commit 83e8cde

Please sign in to comment.