Skip to content

Try to fix python error #90

Try to fix python error

Try to fix python error #90

Workflow file for this run

name: Android CI
on:
push:
branches: [ master ]
tags:
- '*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build
env:
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
KINTA_GPG_PRIVATE_KEY: ${{ secrets.KINTA_GPG_PRIVATE_KEY }}
KINTA_GPG_PRIVATE_KEY_PASSWORD: ${{ secrets.KINTA_GPG_PRIVATE_KEY_PASSWORD }}
KINTA_STAGING_PROFILE_ID: ${{ secrets.KINTA_STAGING_PROFILE_ID }}
run: |
if [ ${{ github.event_name }} != 'pull_request' ]
then
eval `ssh-agent -s`
ssh-add - <<< "${{ secrets.SSH_DEPLOY_KEY }}"
git remote set-url origin [email protected]:dailymotion/kinta.git
git config --global user.email "[email protected]"
git config --global user.name "Kinta GithubActions"
python3 -m venv venv
which pip
pip install mkdocs-material --break-system-packages
mkdocs -V
fi
./gradlew clean assemble deployArtifactsIfNeeded deployDocsIfNeeded deployArchivesIfNeeded -i --stacktrace