feat: create a new snyk view [IDE-711][IDE-712][IDE-713] #552
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
# 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: Build Plugin with Maven | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: maven | |
- name: Decode Keystore | |
id: decode_keystore | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.os == 'ubuntu-latest' }} | |
env: | |
fileName: ./keystore.jks | |
encodedString: ${{ secrets.KEYSTORE }} | |
sha: ${{ secrets.KEYSTORE_SHA }} | |
run: | | |
echo "$encodedString" | base64 -d > $fileName | |
echo "$sha $fileName" > sha256.txt | |
sha256sum -c sha256.txt | |
- name: Build with Maven | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.os == 'ubuntu-latest' }} | |
run: ./mvnw clean verify -P sign -DtrimStackTrace=false | |
env: | |
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }} | |
- name: Build with Maven | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
./mvnw clean verify -DtrimStackTrace=false | |
- name: Upload binaries to static.snyk.io | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.os == 'ubuntu-latest' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_S3_BUCKET_NAME: ${{ secrets.AWS_S3_BUCKET_NAME }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_REGION: us-east-1 | |
run: | | |
.github/upload-to-s3.sh preview |