refactor: replace hand-rolled arg parser in forge-server with figue #64
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: Version | |
| jobs: | |
| release-please: | |
| name: Trigger release pull-request | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
| outputs: | |
| pr: ${{ steps.release.outputs.pr }} | |
| steps: | |
| - uses: actions/create-github-app-token@v1 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.DEV_BOT_APP_ID }} | |
| private-key: ${{ secrets.DEV_BOT_KEY }} | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| config-file: .config/release-please-config.json | |
| manifest-file: .config/release-please-manifest.json |