build(deps): bump actions/checkout from 3.5.2 to 3.5.3 (#183) #265
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 1.11 | |
uses: actions/[email protected] | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: License Header Check | |
run: mvn license:check | |
- name: Build | |
run: mvn -B package --file pom.xml | |
- name: Analyze | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
mvn verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \ | |
-Dsonar.login=$SONAR_TOKEN \ | |
-Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.organization=insideapp-oss \ | |
-Dsonar.projectKey=insideapp-oss_sonar-flutter | |
- name: Read version | |
run: echo "version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> $GITHUB_ENV | |
- name: Upload snapshot release | |
if: github.ref == 'refs/heads/develop' | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{github.workspace}}/sonar-flutter-plugin/target/*.jar | |
tag: ${{env.version}} | |
release_name: ${{env.version}} | |
overwrite: true | |
body: "Snapshot release" | |
file_glob: true | |
prerelease: true |