debug aar file paths #57
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 and Publish SDK | |
on: | |
push: | |
branches: [ atavism/publish-sdk ] | |
tags: | |
- 'v*' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.22.4' | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: 'gradle' | |
- name: Build SDK | |
run: make build-sdk | |
- name: Debug AAR File Paths | |
run: find . -name '*.aar' | |
# - name: Publish SDK | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
# SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
# run: make publish-sdk |