build(deps): bump com.fasterxml.jackson.core:jackson-databind (#47) #32
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: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Maven Action | |
uses: s4u/setup-maven-action@v1.7.0 | |
with: | |
java-version: 17 | |
maven-version: 3.9.9 | |
- name: Build jar | |
run: mvn clean package | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: target-keycloak-phonenumber-login | |
path: target/keycloak-phonenumber-login-*.jar | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Build Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: target-keycloak-phonenumber-login | |
# Upload as an artifact of the current workflow | |
- name: Upload build zip artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Release artifacts | |
path: '*.jar' | |
# Make official GitHub release which will trigger | |
# sending the mail with link for access | |
- name: Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: '*.jar' | |
draft: false | |
prerelease: false | |
allowUpdates: true | |
bodyFile: CHANGELOG.md | |
tag: v26.0.7 |