chore(actions): macos codesign #30
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: Publish Test Report | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
if: always() | ||
with: | ||
files: | | ||
target/reports/*.xml | ||
- name: Upload macos-x64 binary | ||
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 | ||
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 | ||
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 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: win-x64 | ||
path: target/binaries/bonita-data-repository-win-x64.exe | ||
retention-days: 1 | ||
macOs-codesign: | ||
needs: build | ||
uses: ./.github/workflows/_reusable_macOs_codesign.yml | ||
strategy: | ||
matrix: | ||
arch: [macos-x64, macos-arm64] | ||
with: | ||
input-artifact: ${{ matrix.arch}}-unsigned | ||
output-artifact: ${{ matrix.arch}} | ||
filename: bonita-data-repository-${{ matrix.arch}} | ||
teamId: ${{ secrets.APPLE_TEAM_ID }} | ||
Check failure on line 79 in .github/workflows/build.yml GitHub Actions / BuildInvalid workflow file
|
||
entitlements: ${{ secrets.APPLE_ENTITLEMENTS_XML }} | ||
secrets: | ||
certificateData: ${{ secrets.APPLE_CERT_DATA }} | ||
certificatePassword: ${{ secrets.APPLE_CERT_PASSWORD }} | ||
notorizationUser: ${{ secrets.APPLE_NOTARY_USER }} | ||
notorizationPassword: ${{ secrets.APPLE_NOTARY_PASSWORD }} | ||
deploy: | ||
needs: macOs-codesign | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
arch: [ win-x64, linux-x64, macos-x64, macos-arm64 ] | ||
steps: | ||
- name: Retrieve secrets from Keeper | ||
id: ksecrets | ||
uses: Keeper-Security/ksm-action@master | ||
with: | ||
keeper-secret-config: ${{ secrets.KSM_CONFIG }} | ||
secrets: | | ||
YPOU0laqe0V0mq_qwQ_3wg/field/login > env:JFROG_USER | ||
YPOU0laqe0V0mq_qwQ_3wg/field/password > env:JFROG_TOKEN | ||
- 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: whelk-io/maven-settings-xml-action@v21 | ||
with: | ||
servers: > | ||
[ | ||
{ | ||
"id": "snapshots", | ||
"username": "${{ env.JFROG_USER }}", | ||
"password": "${{ env.JFROG_TOKEN }}" | ||
} | ||
] | ||
- 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: https://bonitasoft.jfrog.io/artifactory/libs-snapshot-local/ | ||
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 | ||