From 0027669e55aa41ab7d7b852c5f4020feaf254c84 Mon Sep 17 00:00:00 2001 From: "youji.zzl" Date: Sat, 16 Sep 2023 10:16:54 +0800 Subject: [PATCH] add release --- .github/workflows/arklet_release.yml | 48 +++++++++++++++++++++++++ .github/workflows/codecov.yml | 53 ---------------------------- .github/workflows/stale.yml | 36 +++++++++++++++++++ arklet/pom.xml | 11 +++++- 4 files changed, 94 insertions(+), 54 deletions(-) create mode 100644 .github/workflows/arklet_release.yml delete mode 100644 .github/workflows/codecov.yml create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/arklet_release.yml b/.github/workflows/arklet_release.yml new file mode 100644 index 000000000..72cd26155 --- /dev/null +++ b/.github/workflows/arklet_release.yml @@ -0,0 +1,48 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Release + +## https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release +## trigger manually +on: + workflow_dispatch: + paths: + - 'arklet/**' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'adopt' + cache: maven + - name: Build with Maven + run: mvn clean install -Pci-install -B -U -e && bash ./tools/check_format.sh + release: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'adopt' + cache: maven + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import + gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase + - name: Build with Maven + run: mvn --batch-mode deploy -DskipTests -Prelease + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} \ No newline at end of file diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 349d41e3c..000000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,53 +0,0 @@ -- name: Codecov - # You may pin to the exact commit or the version. - # uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b - uses: codecov/codecov-action@v2.1.0 - with: - # Repository upload token - get it from codecov.io. Required only for private repositories - token: # optional - # Comma-separated list of files to upload - files: # optional - # Directory to search for coverage reports. - directory: # optional - # Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome) - flags: # optional - # The commit SHA of the parent for which you are uploading coverage. If not present, the parent will be determined using the API of your repository provider. When using the repository providers API, the parent is determined via finding the closest ancestor to the commit. - commit_parent: # optional - # Don't upload files to Codecov - dry_run: # optional - # Environment variables to tag the upload with (e.g. PYTHON | OS,PYTHON) - env_vars: # optional - # Specify whether or not CI build should fail if Codecov runs into an error during upload - fail_ci_if_error: # optional - # Path to coverage file to upload - file: # optional - # Comma-separated list, see the README for options and their usage - functionalities: # optional - # Move discovered coverage reports to the trash - move_coverage_to_trash: # optional - # User defined upload name. Visible in Codecov UI - name: # optional - # Specify the branch name - override_branch: # optional - # Specify the build number - override_build: # optional - # Specify the commit SHA - override_commit: # optional - # Specify the pull request number - override_pr: # optional - # Specify the git tag - override_tag: # optional - # Override the assumed OS. Options are alpine | linux | macos | windows. - os: # optional - # Used when not in git/hg project to identify project root directory - root_dir: # optional - # Specify the slug manually (Enterprise use) - slug: # optional - # Change the upload host (Enterprise use) - url: # optional - # Specify whether the Codecov output should be verbose - verbose: # optional - # Specify which version of the Codecov Uploader should be used. Defaults to `latest` - version: # optional - # Directory in which to execute codecov.sh - working-directory: # optional diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..ee03bbe7a --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,36 @@ +name: Layotto Env Pipeline 🌊 + +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + name: "Update Stale Status" + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + days-before-stale: 30 + days-before-close: 7 + stale-issue-message: > + This issue has been automatically marked as stale because it has not had + recent activity in the last 30 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue or help wanted) or other activity occurs. Thank you + for your contributions. + close-issue-message: > + This issue has been automatically closed because it has not had activity in the + last 37 days. If this issue is still valid, please ping a maintainer and ask them to label it as pinned, good first issue or help wanted. + Thank you for your contributions. + stale-pr-message: > + This pull request has been automatically marked as stale because it has not had + activity in the last 30 days. It will be closed in 7 days if no further activity occurs. Please + feel free to give a status update now, ping for review, or re-open when it's ready. + Thank you for your contributions! + close-pr-message: > + This pull request has been automatically closed because it has not had + activity in the last 37 days. Please feel free to give a status update now, ping for review, or re-open when it's ready. + Thank you for your contributions! + stale-issue-label: 'stale' + exempt-issue-labels: 'pinned,good first issue,help wanted' + stale-pr-label: 'stale' + exempt-pr-labels: 'pinned' \ No newline at end of file diff --git a/arklet/pom.xml b/arklet/pom.xml index 0f44eb33f..2cc77e4b1 100644 --- a/arklet/pom.xml +++ b/arklet/pom.xml @@ -449,6 +449,9 @@ jar + + -Xdoclint:none + @@ -466,7 +469,7 @@ org.apache.maven.plugins maven-gpg-plugin - 1.6 + ${maven.gpg.pluign} sign-artifacts @@ -476,6 +479,12 @@ + + + --pinentry-mode + loopback + +