Skip to content

Commit

Permalink
Merge branch 'gluonhq:master' into issue-120
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-Loeffler authored Nov 10, 2024
2 parents 8094085 + ceece31 commit 2cbaffc
Show file tree
Hide file tree
Showing 8 changed files with 271 additions and 15 deletions.
195 changes: 195 additions & 0 deletions .github/assets/gluon_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion .github/workflows/bundles-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
release: ${{ inputs.java-release }}
version: ${{ inputs.java-version }}

- uses: Apple-Actions/import-codesign-certs@v1
- uses: Apple-Actions/import-codesign-certs@v3
with:
p12-file-base64: ${{ secrets.CERTIFICATES_FILE_BASE64 }}
p12-password: ${{ secrets.CERTIFICATES_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundles-mac_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
release: ${{ inputs.java-release }}
version: ${{ inputs.java-version }}

- uses: Apple-Actions/import-codesign-certs@v1
- uses: Apple-Actions/import-codesign-certs@v3
with:
p12-file-base64: ${{ secrets.CERTIFICATES_FILE_BASE64 }}
p12-password: ${{ secrets.CERTIFICATES_PASSWORD }}
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
options:
- RC
- GA
rc_version:
type: string
default: ''
description: 'If candidate is RC, set a version like RC1 or RC2, else leave it empty'

env:
JAVA_RELEASE: '23'
Expand Down Expand Up @@ -53,7 +57,11 @@ jobs:
S3_PATH=$PROJECT_VERSION
CANDIDATE=${{ github.event.inputs.candidate }}
if [[ "$CANDIDATE" == RC ]]; then
PROJECT_VERSION=${PROJECT_VERSION}-RC
RC_VERSION=${{ github.event.inputs.rc_version }}
if [[ "$RC_VERSION" == "" ]]; then
RC_VERSION="RC"
fi
PROJECT_VERSION=${PROJECT_VERSION}-${RC_VERSION}
S3_PATH=RC/$PROJECT_VERSION
fi
echo "Releasing.. "$PROJECT_VERSION
Expand Down
Loading

0 comments on commit 2cbaffc

Please sign in to comment.