将I18n/Setting的管理API从I18nService/SettingService移动到CoreAPI #607
This file contains hidden or 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
| name: Build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Build | |
| run: ./gradlew build | |
| env: | |
| DOCKER_TEST: "true" | |
| - name: Upload distZip (dev snapshot) | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: autotweaker-dev-dist | |
| path: | | |
| core/build/distributions/*.zip | |
| core/build/distributions/*.tar | |
| retention-days: 7 |