fixes in parsing of ktontab templates #396
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: 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: 17 | |
- name: Update version | |
run: | | |
branch="`echo "${{ github.ref }}" | grep -o "[^/]*$"`" | |
sed -i -e "s/^version=\([0-9\.]*\)/version=\1-branch_$branch-build${{ github.run_number }}/" gradle.properties | |
- name: prebuild | |
run: ./gradlew clean build | |
- name: Publish package | |
continue-on-error: true | |
run: ./gradlew --no-parallel publishAllPublicationsToGithubPackagesRepository | |
env: | |
GITHUBPACKAGES_USER: ${{ github.actor }} | |
GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} |