mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-10-31 21:43:48 +00:00
25 lines
895 B
YAML
25 lines
895 B
YAML
name: Publish package to GitHub Packages
|
|
on: [push]
|
|
jobs:
|
|
publishing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Rewrite version
|
|
run: |
|
|
branch="`echo "${{ github.ref }}" | grep -o "[^/]*$"`"
|
|
cat gradle.properties | sed -e "s/^library_version=\([0-9\.]*\)/library_version=\1-branch_$branch-build${{ github.run_number }}/" > gradle.properties.tmp
|
|
rm gradle.properties
|
|
mv gradle.properties.tmp gradle.properties
|
|
- name: Build
|
|
run: ./gradlew build
|
|
- name: Publish
|
|
continue-on-error: true
|
|
run: ./gradlew publishAllPublicationsToGithubPackagesRepository --no-parallel
|
|
env:
|
|
GITHUBPACKAGES_USER: ${{ github.actor }}
|
|
GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|