-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Antonio Mindov <antonio.mindov@limechain.tech>
- Loading branch information
Showing
103 changed files
with
1,001 additions
and
552 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,43 +1,51 @@ | ||
name: Upload Github Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
permissions: | ||
id-token: write | ||
pages: write | ||
|
||
env: | ||
LC_ALL: C.UTF-8 | ||
|
||
jobs: | ||
upload-pages: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pages: 'write' | ||
id-token: 'write' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
- name: Cache Gradle packages | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Compile SDK | ||
run: ./gradlew compileJava | ||
- name: Generate Javadoc | ||
run: ./gradlew sdk:javadoc | ||
- name: Pages | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: './sdk/build/docs/javadoc' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
publish: | ||
name: Publish | ||
runs-on: [ self-hosted, Linux, medium, ephemeral ] | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | ||
|
||
- name: Compile SDK | ||
run: ./gradlew compileJava --scan | ||
|
||
- name: Generate Javadoc | ||
run: ./gradlew sdk:javadoc -Dfile.encoding=UTF-8 --scan | ||
|
||
- name: Pages | ||
uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0 | ||
with: | ||
path: ./sdk/build/docs/javadoc | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@13b55b33dd8996121833dbc1db458c793a334630 # v3.0.1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: Release Artifacts | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
LC_ALL: C.UTF-8 | ||
GRADLE_CACHE_USERNAME: ${{ secrets.GRADLE_CACHE_USERNAME }} | ||
GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} | ||
|
||
jobs: | ||
validate-release: | ||
name: Validate Release | ||
runs-on: [ self-hosted, Linux, medium, ephemeral ] | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Retrieve Tag Version | ||
id: tag | ||
run: echo "version=${GITHUB_REF#refs/tags/v}" >> "${GITHUB_OUTPUT}" | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | ||
with: | ||
cache-read-only: false | ||
|
||
- name: Determine Project Version | ||
id: project | ||
run: echo "version=$(./gradlew -q showVersion | tr -d '[:space:]')" >> "${GITHUB_OUTPUT}" | ||
|
||
- name: Validate Release | ||
run: | | ||
if [[ "${{ steps.tag.outputs.version }}" != "${{ steps.project.outputs.version }}" ]]; then | ||
echo "::error file=version.gradle,line=5,title=Version Mismatch::Tag version '${{ steps.tag.outputs.version }}' does not match the Gradle project version '${{ steps.project.outputs.version }}'. Please update the 'version.gradle' file before tagging." | ||
exit 1 | ||
fi | ||
maven-central: | ||
name: Publish to Maven Central | ||
runs-on: [ self-hosted, Linux, medium, ephemeral ] | ||
needs: | ||
- validate-release | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Install GnuPG Tools | ||
if: ${{ inputs.dry-run-enabled != true }} | ||
run: | | ||
if ! command -v gpg2 >/dev/null 2>&1; then | ||
echo "::group::Updating APT Repository Indices" | ||
sudo apt update | ||
echo "::endgroup::" | ||
echo "::group::Installing GnuPG Tools" | ||
sudo apt install -y gnupg2 | ||
echo "::endgroup::" | ||
fi | ||
- name: Import GPG key | ||
id: gpg_key | ||
uses: crazy-max/ghaction-import-gpg@82a020f1f7f605c65dd2449b392a52c3fcfef7ef # v6.0.0 | ||
with: | ||
gpg_private_key: ${{ secrets.GPG_KEY_CONTENTS }} | ||
passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }} | ||
git_config_global: true | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
git_tag_gpgsign: true | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | ||
with: | ||
cache-read-only: false | ||
|
||
- name: Compile SDK & Javadoc | ||
run: ./gradlew assemble :sdk:javadoc -Dfile.encoding=UTF-8 --scan | ||
|
||
- name: Nexus Release | ||
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository --no-parallel -Dfile.encoding=UTF-8 --scan -PsonatypeUsername=${{ secrets.SONATYPE_USERNAME }} -PsonatypePassword=${{ secrets.SONATYPE_PASSWORD }} |
Oops, something went wrong.