GH Hosted: self-extr jar checksum
This commit is contained in:
9
.github/scripts/sign-exe-in-zip-file.sh
vendored
9
.github/scripts/sign-exe-in-zip-file.sh
vendored
@@ -18,11 +18,10 @@ zip -r -q $file ./${destination_folder_name}
|
||||
echo "Successfully zipped ${destination_folder_name} into ${file}"
|
||||
java -jar ${workdir}/.github/scripts/self-extracting-jar-creator.jar $file
|
||||
|
||||
filename_no_ext="${filename%.*}"
|
||||
echo "Creating checksums sha-256 and md5"
|
||||
echo "Creating checksums sha-256 and md5 for ${file}"
|
||||
shasum -a 256 $file > ${file}.sha256
|
||||
md5 $file > ${file}.md5
|
||||
self_jar_file=${file::-4}.self-extracting.jar
|
||||
self_jar_file=${file%.*}.self-extracting.jar
|
||||
echo "Creating checksums sha-256 and md5 for ${self_jar_file}"
|
||||
shasum -a 256 $self_jar_file > ${self_jar_file}.sha256
|
||||
md5 $self_jar_file > ${self_jar_file}.md5
|
||||
|
||||
md5 $self_jar_file > ${self_jar_file}.md5
|
||||
2
.github/workflows/eclipse-distro-build.yml
vendored
2
.github/workflows/eclipse-distro-build.yml
vendored
@@ -58,5 +58,5 @@ jobs:
|
||||
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}
|
||||
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
||||
run: |
|
||||
cd eclipse-distribution
|
||||
cd ${{ github.workspace }}/eclipse-distribution
|
||||
./mvnw --batch-mode -U clean deploy -P${{ inputs.eclipse_profile }} -P${{ inputs.build_type }} -Pgitactions -Pgpg.sign -Dsigning.skip=true -Dmaven.repo.local=~/.m2/repository-signed -Dhttpclient.retry-max=20 -Dmaven.test.skip=true -Declipse.p2.mirrors=false -Dtycho.localArtifacts=ignore -Ds3service.https-only=true -Dp2.replaceQualifier=true -Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=1200000 -Dorg.eclipse.equinox.p2.transport.ecf.retry=5 -Dskip.eclipserun.proxies=false -Dskip.osx.signing=false -Dskip.win.signing=false -Dskip.osx.notarizing=false -Dtycho.equinox.resolver.uses=true
|
||||
Reference in New Issue
Block a user