Skip to content

Commit 46376b1

Browse files
committed
fix workflow
1 parent af551c5 commit 46376b1

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/release_build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,35 +37,35 @@ jobs:
3737
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
3838
gpg-passphrase: MAVEN_GPG_PASSPHRASE
3939

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 }}
4646

4747
- name: Get Version
4848
id: version-string
4949
run: |
5050
echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV"
5151
echo "taskit_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_OUTPUT"
5252
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
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
6161

6262
update-gcm-taskit:
6363
needs: release
6464
runs-on: ubuntu-latest
6565
permissions:
6666
contents: write
6767
env:
68-
VERSION: ${{ needs.release.outputs.gcm_taskit_version }}
68+
VERSION: ${{ needs.release.outputs.taskit_version }}
6969
steps:
7070
- name: Checkout GCM Taskit
7171
uses: actions/checkout@v4

0 commit comments

Comments
 (0)