Merge pull request #1675 from dadoonet/dependabot/maven/co.elastic.cl… #350
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 and Deploy the master branch | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
# We update files if needed | |
update-files: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT || github.token }} | |
ref: ${{ github.head_ref }} | |
- name: Update resources with Maven | |
run: mvn -B generate-resources | |
- name: Update files if needed | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
build: | |
runs-on: ubuntu-latest | |
needs: update-files | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 and Maven Central Repository | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
server-id: sonatype-nexus-snapshots | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_CENTRAL_TOKEN | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Build the project | |
run: mvn --batch-mode install -DskipTests -Ddocker.skip | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 and Maven Central Repository | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
server-id: sonatype-nexus-snapshots | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_CENTRAL_TOKEN | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Deploy with Maven | |
run: mvn deploy -DskipTests | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_TOKEN }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |