mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
name: Release Please
|
|
|
|
on:
|
|
push:
|
|
branches: [main] # updates/opens the release PR when commits land on main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: release-please
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
release-please:
|
|
name: Release Please
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
release_created: ${{ steps.rp.outputs.release_created }}
|
|
tag_name: ${{ steps.rp.outputs.tag_name }}
|
|
steps:
|
|
- id: app-token
|
|
uses: actions/create-github-app-token@v2
|
|
with:
|
|
app-id: ${{ secrets.GH_STOAT_RELEASE_APP_ID }}
|
|
private-key: ${{ secrets.GH_STOAT_RELEASE_APP_PRIVATE_KEY }}
|
|
- id: rp
|
|
uses: googleapis/release-please-action@v4
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
config-file: release-please-config.json
|
|
|
|
publish-please:
|
|
name: Publish Please
|
|
needs: release-please
|
|
if: needs.release-please.outputs.release_created == 'true'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- id: app-token
|
|
uses: actions/create-github-app-token@v2
|
|
with:
|
|
app-id: ${{ secrets.GH_STOAT_RELEASE_APP_ID }}
|
|
private-key: ${{ secrets.GH_STOAT_RELEASE_APP_PRIVATE_KEY }}
|
|
|
|
- name: Send release notification webhook
|
|
run: |
|
|
RELEASE_URL="https://github.com/revoltchat/backend/releases/tag/${{ needs.release-please.outputs.tag_name }}"
|
|
curl -X POST "${{ secrets.STOAT_WEBHOOK_UPDATES_URL }}" \
|
|
-H "Content-Type: application/json" \
|
|
-d "{\"content\": \"$RELEASE_URL\"}"
|
|
|
|
- name: Publish crates
|
|
uses: katyo/publish-crates@v2
|
|
with:
|
|
registry-token: ${{ secrets.CRATES_IO_PUBLISH_TOKEN }}
|