Deploy snapshots #205
This file contains hidden or 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: "Deploy snapshots" | |
on: | |
workflow_run: | |
workflows: [ "Deploy documentation to website", "Test native-gradle-plugin", "Test native-maven-plugin", "Test junit-platform-native" ] | |
branches: [ "master" ] | |
types: | |
- completed | |
workflow_dispatch: | |
concurrency: | |
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'graalvm/native-build-tools' }} | |
jobs: | |
deploy-snapshots: | |
name: "Build and deploy snapshots" | |
if: ${{ github.repository == 'graalvm/native-build-tools' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java-version: [ 17 ] | |
os: [ ubuntu-22.04 ] | |
steps: | |
- name: "☁ Checkout repository" | |
uses: actions/checkout@v4 | |
with: | |
ssh-key: "${{ secrets.SSH_PRIVATE_KEY }}" | |
- name: "🔧 Prepare environment" | |
uses: ./.github/actions/prepare-environment | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
java-version: ${{ matrix.java-version }} | |
push-access: 1 | |
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: "🌍 Build and publish snapshots" | |
run: | | |
./gradlew publishToMavenLocal publishAllPublicationsToSnapshotsRepository --no-parallel |