Skip to content
This repository was archived by the owner on Jul 2, 2026. It is now read-only.

fix(palantir-java-format): update run.sh to use native image binaries… #93

fix(palantir-java-format): update run.sh to use native image binaries…

fix(palantir-java-format): update run.sh to use native image binaries… #93

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Create or refresh GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Idempotent: if the tag already has a release (force-pushed during
# pre-1.0 iteration), delete + recreate so notes regenerate from the
# new commit range. Otherwise create fresh.
if gh release view "${GITHUB_REF_NAME}" > /dev/null 2>&1; then
gh release delete "${GITHUB_REF_NAME}" --yes
fi
gh release create "${GITHUB_REF_NAME}" \
--title "${GITHUB_REF_NAME}" \
--generate-notes