Add --keystore flag for signing with an encrypted keystore #971
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: Write Renovate changeset | |
| on: | |
| pull_request_target: | |
| paths: | |
| - '.github/workflows/changeset-for-renovate.yml' | |
| - '**/yarn.lock' | |
| jobs: | |
| generate-changeset: | |
| runs-on: ['self-hosted', 'org', '8-cpu'] | |
| if: github.actor == 'renovate[bot]' | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - uses: actions/checkout@v6 | |
| - name: "Run changesets-renovate" | |
| # when on a renovate branch which modified the package.json for a workspace this will create a changeset for those changes | |
| run: npx @scaleway/changesets-renovate | |