Skip to content

feat(clips): add local history and duplicate-save warning #9

feat(clips): add local history and duplicate-save warning

feat(clips): add local history and duplicate-save warning #9

name: Release Please
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release-please:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check release token
env:
RELEASE_PLEASE_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}
run: |
if [ -z "$RELEASE_PLEASE_TOKEN" ]; then
echo "RELEASE_PLEASE_TOKEN must be set so Release Please can manage release pull requests." >&2
exit 1
fi
- name: Run release-please
uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
# The release workflow builds and attaches every asset before publishing.
# This is required when GitHub release immutability is enabled.
skip-github-release: true