Release #3
Workflow file for this run
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: 'Build' | |
on: | |
release: | |
# runs for stable and pre-releases | |
types: [published] | |
jobs: | |
cancel-previous-workflow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # [email protected] | |
with: | |
access_token: ${{ github.token }} | |
build: | |
name: Build Job ${{ matrix.os }} - Java ${{ matrix.java }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./posthog-v3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
java: ['17'] | |
env: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: 'Set up Java: ${{ matrix.java }}' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- name: Update version | |
run: ./scripts/bump-version.sh ${{ github.event.release.tag_name }} | |
# Source: https://stackoverflow.com/a/58035262 | |
# - name: Extract branch name | |
# shell: bash | |
# run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
# id: extract_branch | |
# actions/checkout fetches only a single commit in a detached HEAD state. Therefore | |
# we need to pass the current branch, otherwise we can't commit the changes. | |
# GITHUB_HEAD_REF is the name of the head branch. GitHub Actions only sets this for PRs. | |
- name: Commit & push | |
run: | | |
echo "Tag name from github.ref_name: ${{ github.event.release.target_commitish }}" | |
./scripts/commit-code.sh ${{ github.event.release.target_commitish }} | |
# Let's be sure that everything works before we release | |
- name: Dry release | |
run: make dryRelease | |
# - name: Release | |
# run: make release |