We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95fee7e commit 5325a04Copy full SHA for 5325a04
.github/workflows/release.yml
@@ -114,6 +114,9 @@ jobs:
114
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
115
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
116
117
+ - name: Build mod
118
+ run: ./gradlew build
119
+
120
# https://learn.microsoft.com/en-us/azure/devops/artifacts/quickstarts/github-actions
121
- name: Get Azure access token
122
if: inputs.dry_run == false
@@ -122,9 +125,6 @@ jobs:
125
echo "::add-mask::$accessToken"
123
126
echo "MAVEN_PASSWORD=$accessToken" >> $GITHUB_ENV
124
127
- - name: Build mod
- run: ./gradlew build
-
128
- name: Publish to ${{ inputs.dry_run && 'Maven Local' || 'Maven' }}
129
run: ./gradlew ${{ inputs.dry_run && 'publishToMavenLocal' || 'publish' }}
130
0 commit comments