Skip to content

πŸ‘·πŸΎβ€β™‚οΈ Reactivated the CI pipeline for Android-SAK #16

πŸ‘·πŸΎβ€β™‚οΈ Reactivated the CI pipeline for Android-SAK

πŸ‘·πŸΎβ€β™‚οΈ Reactivated the CI pipeline for Android-SAK #16

Workflow file for this run

name: build
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Installing JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Set version
id: vars
run: |
VERSION=${GITHUB_REF#refs/tags/}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Publish package
run: |
./gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}