Create GitHub release of PWT #42
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: Create GitHub release of PWT | |
| # This workflow for pluggable-widgets-tools: | |
| # 1. Puts current version from package.json as the version for unreleased changes in CHANGELOG.md | |
| # 2. Commits the updates of CHANGELOG.md and pushes the commit to the repo | |
| # 3. Based on the commit it: | |
| # 3.1 Creates a draft GitHub release for PWT. | |
| # 3.2 Creates a merge request that targets CHANGELOG.md updates back to master. | |
| # | |
| # NOTE: Publishing to npm doesn't happen in this workflow. PublishNpm.yml is responsible fot npm publishing. | |
| # When the GitHub release is approved, that creates a corresponding git tag to trigger PublishNpm.yml. | |
| on: workflow_dispatch | |
| jobs: | |
| release: | |
| name: "Create GitHub release and changelogs MR of PWT" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checking-out code" | |
| uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2 | |
| with: | |
| submodules: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda #v4.1.0 | |
| with: | |
| version: 10 | |
| - name: "Defining node version" | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: 'pnpm' | |
| - name: "Installing dependencies" | |
| run: pnpm install | |
| - name: "Creating PWT release and MR" | |
| run: "pnpm --dir packages/release-tools run release:pwt" | |
| env: | |
| GH_USERNAME: ${{ secrets.GH_USERNAME }} | |
| GH_EMAIL: ${{ secrets.GH_EMAIL }} | |
| GH_NAME: ${{ secrets.GH_NAME }} | |
| GH_PAT: ${{ secrets.GH_PAT }} |