fix(deps): update dependency com.google.apis:google-api-services-run to v2 #9187
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: Mac OS X Native CLI | |
| on: | |
| push: | |
| branches: | |
| - '[1-9]+.[0-9]+.x' | |
| pull_request: | |
| branches: | |
| - '[1-9]+.[0-9]+.x' | |
| jobs: | |
| intel: | |
| name: Builds OS X Intel Native CLI | |
| runs-on: macos-13 | |
| steps: | |
| - name: "⬇ Checkout the repository" | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: "☕️ Setup GraalVM CE" | |
| uses: graalvm/[email protected] | |
| with: | |
| java-version: '21' | |
| distribution: 'graalvm-community' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "📸 Build the Native Image" | |
| run: ./gradlew micronaut-cli:nativeCompile --no-daemon | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
| DEVELOCITY_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | |
| DEVELOCITY_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | |
| - name: "✅ Verify Build" | |
| run: ./starter-cli/build/native/nativeCompile/mn --version | |
| - name: "✅ Verify Create App" | |
| run: ./starter-cli/build/native/nativeCompile/mn create-app test | |
| - name: "👷♀️Package Build" | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| run: | | |
| mkdir -p mn-darwin-amd64-snapshot/bin | |
| mv ./starter-cli/build/native/nativeCompile/mn mn-darwin-amd64-snapshot/bin | |
| cp ./LICENSE mn-darwin-amd64-snapshot/ | |
| zip -r mn-darwin-amd64-snapshot.zip ./mn-darwin-amd64-snapshot -x '*.DS_Store*' -x '__MAC_OSX' | |
| - name: "🆙 Upload Snapshot" | |
| if: success() && github.event_name == 'push' && github.ref == 'refs/heads/4.10.x' | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: mn-darwin-amd64-snapshot | |
| path: mn-darwin-amd64-snapshot.zip | |
| arm: | |
| name: Builds OS X Arm Native CLI | |
| runs-on: macos-latest | |
| steps: | |
| - name: "⬇ Checkout the repository" | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: "☕️ Setup GraalVM CE" | |
| uses: graalvm/[email protected] | |
| with: | |
| java-version: '21' | |
| distribution: 'graalvm-community' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "📸 Build the Native Image" | |
| run: ./gradlew micronaut-cli:nativeCompile --no-daemon | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
| DEVELOCITY_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | |
| DEVELOCITY_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | |
| - name: "✅ Verify Build" | |
| run: ./starter-cli/build/native/nativeCompile/mn --version | |
| - name: "✅ Verify Create App" | |
| run: ./starter-cli/build/native/nativeCompile/mn create-app test | |
| - name: "👷♀️Package Build" | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| run: | | |
| mkdir -p mn-darwin-aarch64-snapshot/bin | |
| mv ./starter-cli/build/native/nativeCompile/mn mn-darwin-aarch64-snapshot/bin | |
| cp ./LICENSE mn-darwin-aarch64-snapshot/ | |
| zip -r mn-darwin-aarch64-snapshot.zip ./mn-darwin-aarch64-snapshot -x '*.DS_Store*' -x '__MAC_OSX' | |
| - name: "🆙 Upload Snapshot" | |
| if: success() && github.event_name == 'push' && github.ref == 'refs/heads/4.4.x' | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: mn-darwin-aarch64-snapshot | |
| path: mn-darwin-aarch64-snapshot.zip |