Skip to content

Merge pull request #50 from io-github-nafg/chore--update--gitignore-t… #119

Merge pull request #50 from io-github-nafg/chore--update--gitignore-t…

Merge pull request #50 from io-github-nafg/chore--update--gitignore-t… #119

Workflow file for this run

name: CI
on:
push:
tags: [ 'v*' ]
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
jobs:
build:
name: Compile
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- uses: actions/checkout@v5
- uses: bleep-build/[email protected]
- uses: coursier/cache-action@v6
with:
extraFiles: bleep.yaml
- name: Compile
run: bleep compile
publish:
timeout-minutes: 15
runs-on: ubuntu-latest
needs: [ build ]
if: "startsWith(github.ref, 'refs/tags/v')"
steps:
- uses: actions/checkout@v5
- uses: bleep-build/[email protected]
- name: Release
run: bleep publish -- --mode=portal-api:AUTOMATIC
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}