@@ -37,35 +37,35 @@ jobs:
37
37
gpg-private-key : ${{ secrets.GPG_SECRET_KEY }}
38
38
gpg-passphrase : MAVEN_GPG_PASSPHRASE
39
39
40
- - name : Build and Deploy Taskit
41
- run : mvn clean deploy -Pjavadoc,sign --file pom.xml
42
- env :
43
- MAVEN_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
44
- MAVEN_PASSWORD : ${{ secrets.MAVEN_CENTRAL_TOKEN }}
45
- MAVEN_GPG_PASSPHRASE : ${{ secrets.GPG_SECRET_KEY_PASSWORD }}
40
+ # - name: Build and Deploy Taskit
41
+ # run: mvn clean deploy -Pjavadoc,sign --file pom.xml
42
+ # env:
43
+ # MAVEN_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
44
+ # MAVEN_PASSWORD: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
45
+ # MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_SECRET_KEY_PASSWORD }}
46
46
47
47
- name : Get Version
48
48
id : version-string
49
49
run : |
50
50
echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV"
51
51
echo "taskit_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_OUTPUT"
52
52
53
- - name : Make Taskit Release
54
-
55
- with :
56
- artifacts : " core/target/core-${{ env.version }}*,protobuf/target/protobuf-${{ env.version }}*"
57
- name : " v${{ env.version }}"
58
- tag : " v${{ env.version }}"
59
- generateReleaseNotes : true
60
- skipIfReleaseExists : true
53
+ # - name: Make Taskit Release
54
+ # uses: ncipollo/[email protected]
55
+ # with:
56
+ # artifacts: "core/target/core-${{ env.version }}*,protobuf/target/protobuf-${{ env.version }}*"
57
+ # name: "v${{ env.version }}"
58
+ # tag: "v${{ env.version }}"
59
+ # generateReleaseNotes: true
60
+ # skipIfReleaseExists: true
61
61
62
62
update-gcm-taskit :
63
63
needs : release
64
64
runs-on : ubuntu-latest
65
65
permissions :
66
66
contents : write
67
67
env :
68
- VERSION : ${{ needs.release.outputs.gcm_taskit_version }}
68
+ VERSION : ${{ needs.release.outputs.taskit_version }}
69
69
steps :
70
70
- name : Checkout GCM Taskit
71
71
uses : actions/checkout@v4
0 commit comments