chore: prepare to publish gl_ES (#4057) #2217
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
| name: ' 🚀 release-please' | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| publish: | |
| needs: | |
| - release-please | |
| uses: ./.github/workflows/publish.yml | |
| secrets: | |
| PUBLISH_NPM: ${{ secrets.PUBLISH_NPM }} | |
| if: ${{ needs.release-please.outputs.release_created }} | |
| # cspell:ignore noreply |