-
-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop publishing the Uber JAR artifact
For now... It does not do anything good with the slim packaging. For the rest of the packaging it does not work either due to extension indexing issues. To be revised
- Loading branch information
1 parent
36ccf9e
commit 055311f
Showing
1 changed file
with
0 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,20 +29,8 @@ jobs: | |
FILE_NAME=jenkinsfile-runner | ||
PROJECT_VERSION=${{ steps.set-version.outputs.project-version }} | ||
echo "::set-output name=file-name::$FILE_NAME" | ||
wget -q https://repo.jenkins-ci.org/releases/$GROUP_ID/$ARTIFACT_ID/$PROJECT_VERSION/$ARTIFACT_ID-$PROJECT_VERSION.jar \ | ||
-O $FILE_NAME-$PROJECT_VERSION.jar | ||
wget -q https://repo.jenkins-ci.org/releases/$GROUP_ID/$ARTIFACT_ID/$PROJECT_VERSION/$ARTIFACT_ID-$PROJECT_VERSION.zip \ | ||
-O $FILE_NAME-$PROJECT_VERSION.zip | ||
- name: Upload artifact uber jar | ||
id: upload-artifact-uber-jar | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ./${{ steps.fetch-artifact.outputs.file-name }}-${{ steps.set-version.outputs.project-version }}.jar | ||
asset_name: ${{ steps.fetch-artifact.outputs.file-name }}-${{ steps.set-version.outputs.project-version }}.jar | ||
asset_content_type: application/java-archive | ||
- name: Upload artifact minimum package | ||
id: upload-artifact-minimum-package | ||
uses: actions/[email protected] | ||
|