Merge pull request #972 from SheliakLyr/autoTopologyRecovery #535
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
jobs: | |
build: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: java setup | |
uses: coursier/setup-action@v1 | |
- uses: olafurpg/setup-gpg@v3 | |
- env: | |
PGP_PASSPHRASE: "${{ secrets.PGP_PASSPHRASE }}" | |
PGP_SECRET: "${{ secrets.PGP_SECRET }}" | |
SONATYPE_PASSWORD: "${{ secrets.SONATYPE_PASSWORD }}" | |
SONATYPE_USERNAME: "${{ secrets.SONATYPE_USERNAME }}" | |
name: "Publish ${{ github.ref }}" | |
run: sbt ci-release | |
name: Release | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" |