-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
242 additions
and
1,085 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Maven Tst | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
paths-ignore: | ||
- '**.md' | ||
- '**.txt' | ||
- '.github/badges/**.svg' | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'temurin' | ||
cache: gradle | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Set up RtMaven | ||
run: | | ||
pip install git+https://github.com/rtmigo/rtmaven_py@dev | ||
pip install tempground | ||
- name: build | ||
run: | | ||
export GPG_TTY=$(tty) | ||
python msnpub.py | ||
env: | ||
MAVEN_GPG_KEY: ${{ secrets.MAVEN_GPG_KEY }} | ||
MAVEN_GPG_PASSWORD: ${{ secrets.MAVEN_GPG_PASSWORD }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
|
||
# tmpro | ||
|
||
|
||
# - name: Get the project version | ||
# id: get_version | ||
# run: echo "::set-output name=result::$(python .github/gradle_pkgver_notag.py)" | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,4 +75,5 @@ distTmp/ | |
outTmp/ | ||
/test.output | ||
/kotlin-native/dist | ||
kotlin-ide/ | ||
kotlin-ide/ | ||
*.hprof |
Oops, something went wrong.