Add support for additional field_to_match and text_transformation options for WafV2 #133
Workflow file for this run
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: gyro-aws-provider | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
tags: | |
- release/* | |
pull_request: | |
branches: | |
- master | |
- release/* | |
env: | |
GITHUB_ACTIONS_PULL_REQUEST: ${{ github.event.pull_request.number }} | |
GRADLE_DEPLOY_USER: ${{ secrets.GRADLE_DEPLOY_USER }} | |
GRADLE_DEPLOY_PASSWORD: ${{ secrets.GRADLE_DEPLOY_PASSWORD }} | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew |