@@ -88,17 +88,17 @@ jobs:
88
88
if : matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
89
89
run : |
90
90
# update config schema to have version
91
- sed -i 's/dockerfile- 0.0.0.json /dockerfile- ${{ steps.get_tag_version.outputs.TAG_VERSION }}.json /' deployment/schema.json
91
+ sed -i 's/dockerfile\/ 0.0.0/dockerfile\/ ${{ steps.get_tag_version.outputs.TAG_VERSION }}/' deployment/schema.json
92
92
# rename the wasm file
93
- (cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_dockerfile.wasm dockerfile .wasm)
93
+ (cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_dockerfile.wasm plugin .wasm)
94
94
- name : Release
95
95
uses : softprops/action-gh-release@v1
96
96
if : matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
97
97
env :
98
98
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
99
99
with :
100
100
files : |
101
- target/wasm32-unknown-unknown/release/dockerfile .wasm
101
+ target/wasm32-unknown-unknown/release/plugin .wasm
102
102
deployment/schema.json
103
103
body : |
104
104
## Install
@@ -130,22 +130,3 @@ jobs:
130
130
* [JS Formatter](https://github.com/dprint/js-formatter) - Browser/Deno and Node
131
131
* [npm package](https://www.npmjs.com/package/@dprint/dockerfile)
132
132
draft : false
133
-
134
- # PLUGIN PUBLISH
135
- - name : Checkout plugins repo
136
- if : matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
137
- uses : actions/checkout@v2
138
- with :
139
- repository : dprint/plugins
140
- token : ${{ secrets.CI_REPO_PAT }} # github.token is scoped to current repo, so use this to push to other repo
141
- path : dprint-plugins
142
- - name : Plugin publish
143
- if : matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
144
- run : |
145
- cd dprint-plugins
146
- node scripts/replace-plugin.js dprint-plugin-dockerfile ${{ steps.get_tag_version.outputs.TAG_VERSION }} dockerfile-${{ steps.get_tag_version.outputs.TAG_VERSION }}
147
- git add .
148
- git config user.name "David Sherret"
149
- git config user.email "[email protected] "
150
- git commit -m "dprint-plugin-dockerfile ${{ steps.get_tag_version.outputs.TAG_VERSION }}"
151
- git push origin main
0 commit comments