Skip to content

feat(pg_format): update dependency pg_format to v5.5 #39

feat(pg_format): update dependency pg_format to v5.5

feat(pg_format): update dependency pg_format to v5.5 #39

Workflow file for this run

name: Release
on:
push:
branches:
- main
- rc/*
jobs:
test:
uses: ./.github/workflows/ci.yml
with:
push: true
release:
needs: test
if: ${{ needs.test.outputs.restylers }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/download-artifact@v4
with: {name: tools}
- uses: actions/download-artifact@v4
with: {name: manifest}
- id: token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
- name: Update _docs
run: |
chmod +x ./restylers-docs
./restylers-docs > _docs/restylers.md
- id: release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/git
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
outputs:
new_release_git_tag: ${{ steps.release.outputs.new_release_git_tag }}