Merge pull request #151 from NipunaMadhushan/test-java #127
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
name: Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'ballerina-platform' | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 17.0.7 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ secrets.BALLERINA_BOT_USERNAME }} | |
packagePAT: ${{ secrets.BALLERINA_BOT_TOKEN }} | |
packagePublishRepo: ${{ github.repository }} | |
run: | | |
./gradlew clean build publish --stacktrace --scan --console=plain --no-daemon | |
./gradlew codeCoverageReport --console=plain --no-daemon | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: distribution | |
path: | | |
prometheus-extension-ballerina/build/distributions/prometheus-extension-ballerina-*.zip | |
grafana-dashboard.json | |
if-no-files-found: error |