Skip to content

Commit 3f91433

Browse files
committed
chore(release): 0.52.1
1 parent 3b97eff commit 3f91433

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ jobs:
8989
- name: Pre-release
9090
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
9191
run: |
92-
cd target/wasm32-unknown-unknown/release/
93-
mv dprint_plugin_typescript.wasm typescript.wasm
9492
# update config schema to have version
9593
sed -i 's/typescript-0.0.0.json/typescript-${{ steps.get_tag_version.outputs.TAG_VERSION }}.json/' deployment/schema.json
94+
# rename the wasm file
95+
(cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_typescript.wasm typescript.wasm)
9696
- name: Release
9797
uses: softprops/action-gh-release@59c3b4891632ff9a897f99a91d7bc557467a3a22
9898
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dprint-plugin-typescript"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
authors = ["David Sherret <[email protected]>"]
55
edition = "2018"
66
homepage = "https://github.com/dprint/dprint-plugin-typescript"

0 commit comments

Comments
 (0)