fix: improve row number tracking #47
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
| # See configuration examples by looking at the release.json and .manifest.json in the | |
| # https://github.com/NEIAAC/typescript-template and https://github.com/NEIAAC/python-template repositories | |
| # For actions like forcing a specific release version or working with multiple release | |
| # branches, see the official documentation: https://github.com/googleapis/release-please | |
| name: release | |
| on: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| metadata: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| desktop: ${{ steps.metadata.outputs.release_created }} | |
| steps: | |
| - uses: googleapis/release-please-action@1155c2c8dcbd6b15e85bae6bc6d1fed9552663cb # v4.2.0 | |
| id: metadata | |
| with: | |
| config-file: release.json | |
| manifest-file: .manifest.json | |
| desktop: | |
| needs: [metadata] | |
| if: ${{ needs.metadata.outputs.desktop }} | |
| uses: ./.github/workflows/deploy.yaml |