feat: migrate images to assets repo, add MakerWorld extract/publish t… #270
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: Handle Release PRs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: actions/[email protected] | |
| with: | |
| client-id: ${{ secrets.RELEASES_APP_ID }} | |
| private-key: ${{ secrets.RELEASES_APP_PRIVATE_KEY }} | |
| - name: Handle Release Creation | |
| uses: camunda/infra-global-github-actions/teams/infra/pull-request/[email protected] | |
| with: | |
| github-token: ${{ steps.app-token.outputs.token }} |