Skip to content

Commit 297627e

Browse files
authored
Fix plugin release action (#27)
1 parent 5316b17 commit 297627e

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,18 @@ jobs:
4646
plugin:
4747
runs-on: ubuntu-latest
4848
steps:
49-
- name: sha256
50-
run: |
51-
make buildplugin
52-
sha256sum ./protoc-gen-connect-kotlin/build/libs/protoc-gen-connect-kotlin.jar >> sha256.txt
53-
- name: Publish GitHub artifacts
54-
uses: softprops/action-gh-release@v1
55-
with:
56-
generate_release_notes: true
57-
append_body: true
58-
files: |
59-
./protoc-gen-connect-kotlin/build/libs/protoc-gen-connect-kotlin.jar
60-
sha256.txt
49+
- uses: actions/checkout@v3
50+
- name: Validate Gradle Wrapper
51+
uses: gradle/wrapper-validation-action@v1
52+
- name: sha256
53+
run: |
54+
make buildplugin
55+
sha256sum ./protoc-gen-connect-kotlin/build/libs/protoc-gen-connect-kotlin.jar >> sha256.txt
56+
- name: Publish GitHub artifacts
57+
uses: softprops/action-gh-release@v1
58+
with:
59+
generate_release_notes: true
60+
append_body: true
61+
files: |
62+
./protoc-gen-connect-kotlin/build/libs/protoc-gen-connect-kotlin.jar
63+
sha256.txt

0 commit comments

Comments
 (0)