40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: Snapshot Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**.scala'
|
|
- '**.java'
|
|
- '**.sbt'
|
|
- 'src/main/resources/org/xerial/snappy/native/**'
|
|
- '.github/workflows/snapshot.yml'
|
|
tag:
|
|
- '!*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish_snapshots:
|
|
name: Publish snapshots
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 10000
|
|
# Fetch all tags so that sbt-dynver can find the previous release version
|
|
- run: git fetch --tags
|
|
- uses: olafurpg/setup-scala@v14
|
|
with:
|
|
java-version: adopt@1.11
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/.cache
|
|
key: ${{ runner.os }}-snapshot-${{ hashFiles('**/*.sbt') }}
|
|
restore-keys: ${{ runner.os }}-snapshot-
|
|
- name: Publish snapshots
|
|
env:
|
|
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USER }}'
|
|
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASS }}'
|
|
run: ./sbt publish
|