fix: try onload
handler
#175
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: Deploy to maven.d1s.dev (snapshots) | |
on: | |
push | |
jobs: | |
deploy_snapshot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'liberica' | |
cache: 'gradle' | |
- name: Get commit hash | |
run: echo "GIT_SHORT_COMMIT_SHA=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV | |
- name: Deploy to maven.d1s.dev (snapshots) | |
env: | |
MAVEN_D1S_DEV_USERNAME: ${{ secrets.MAVEN_D1S_DEV_USERNAME }} | |
MAVEN_D1S_DEV_PASSWORD: ${{ secrets.MAVEN_D1S_DEV_PASSWORD }} | |
run: | | |
./gradlew beam-common:publishAllPublicationsToMavenD1sDevRepositoryRepository && | |
./gradlew beam-client:publishAllPublicationsToMavenD1sDevRepositoryRepository && | |
./gradlew beam-client-app:publishAllPublicationsToMavenD1sDevRepositoryRepository | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build_artifacts | |
path: | | |
./beam-common/build/libs | |
./beam-client/build/libs | |
./beam-client-app/build/libs |