chore(deps-dev): bump @types/node from 20.12.5 to 20.14.5 #212
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: Build | |
on: | |
push: | |
branches: | |
- develop | |
- release/* | |
- support/* | |
pull_request: | |
branches: | |
- develop | |
- release/* | |
- support/* | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'maven' | |
- name: Build | |
run: ./mvnw -ntp clean verify -Dstyle.color=always | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testResults | |
path: | | |
target/reports/*.xml | |
- name: Upload macos-x64 binary | |
if: ${{ github.event.pull_request == null }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos-x64-unsigned | |
path: target/binaries/bonita-data-repository-macos-x64 | |
retention-days: 1 | |
- name: Upload macos-arm64 binary | |
if: ${{ github.event.pull_request == null }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos-arm64-unsigned | |
path: target/binaries/bonita-data-repository-macos-arm64 | |
retention-days: 1 | |
- name: Upload linux-x64 binary | |
if: ${{ github.event.pull_request == null }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux-x64 | |
path: target/binaries/bonita-data-repository-linux-x64 | |
retention-days: 1 | |
- name: Upload win-x64 binary | |
if: ${{ github.event.pull_request == null }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: win-x64 | |
path: target/binaries/bonita-data-repository-win-x64.exe | |
retention-days: 1 | |
event_file: | |
name: "Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: eventFile | |
path: ${{ github.event_path }} | |
macOs-codesign: | |
if: ${{ github.event.pull_request == null }} | |
needs: build | |
strategy: | |
matrix: | |
arch: [macos-x64, macos-arm64] | |
uses: ./.github/workflows/_reusable_macOs_codesign.yml | |
secrets: | |
certificateData: ${{ secrets.APPLE_CERT_DATA }} | |
certificatePassword: ${{ secrets.APPLE_CERT_PASSWORD }} | |
notorizationUser: ${{ secrets.APPLE_NOTARY_USER }} | |
notorizationPassword: ${{ secrets.APPLE_NOTARY_PASSWORD }} | |
teamId: ${{ secrets.APPLE_TEAM_ID }} | |
entitlements: ${{ secrets.APPLE_ENTITLEMENTS_XML }} | |
with: | |
input-artifact: ${{ matrix.arch}}-unsigned | |
output-artifact: ${{ matrix.arch}} | |
filename: bonita-data-repository-${{ matrix.arch}} | |
deploy: | |
if: ${{ github.event.pull_request == null }} | |
needs: macOs-codesign | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
arch: [ win-x64, linux-x64, macos-x64, macos-arm64 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'maven' | |
- name: Setup Maven configuration | |
uses: bonitasoft/maven-settings-action@v1 | |
with: | |
keeper-secret-config: ${{ secrets.KSM_CONFIG }} | |
- name: Download binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ matrix.arch }} | |
path: target/binaries | |
- name: Read version | |
id: read-version | |
run: echo "version=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT | |
- name: Deploy | |
env: | |
SNAPSHOT_REPOSITORY_URL: ${{ vars.SNAPSHOTS_REPOSITORY_URL }} | |
run: | | |
./mvnw assembly:single@archive-${{ matrix.arch }} | |
./mvnw -ntp deploy:deploy-file -Dstyle.color=always -DrepositoryId=snapshots -Durl=${{ env.SNAPSHOT_REPOSITORY_URL }} \ | |
-Dfile=target/bonita-data-repository-${{ steps.read-version.outputs.version }}-${{ matrix.arch }}.zip \ | |
-DgroupId=org.bonitasoft.web \ | |
-DartifactId=bonita-data-repository \ | |
-Dversion=${{ steps.read-version.outputs.version }} \ | |
-Dclassifier=${{ matrix.arch }} \ | |
-Dpackaging=zip \ | |
-DgeneratePom=false | |
delete-workfow-artifacts: | |
if: ${{ github.event.pull_request == null }} | |
needs: deploy | |
uses: ./.github/workflows/_reusable_delete-workflow-artifacts.yml | |
with: | |
excludes: | | |
testResults | |
eventFile | |