chore(deps): update dependency turbo to v2.10.3 (#3496) #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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: write-all | |
| steps: | |
| - name: Pull Secrets | |
| uses: scaleway/action-scw-secret@3658f2234f185b17405d19254557b34484bf4f99 # v0.0.11 | |
| with: | |
| secret-names: | | |
| NPM_TOKEN, /npm/token_scaleway_lib | |
| access-key: ${{ vars.SCW_ACCESS_KEY }} | |
| secret-key: ${{ secrets.SCW_SECRET_KEY }} | |
| default-project-id: ${{ vars.SCW_DEFAULT_PROJECT_ID }} | |
| default-organization-id: ${{ vars.SCW_DEFAULT_ORGANIZATION_ID }} | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Git Identity | |
| run: | | |
| git config --global user.name 'Scaleway Bot' | |
| git config --global user.email 'github@scaleway.com' | |
| git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: pnpm/action-setup@2e223e0f0d2b8fd9872cbadb8b7428e5f8b5556d # Temporary fix for https://github.com/pnpm/action-setup/issues/225 | |
| - name: Use Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile && pnpm build && pnpm install --frozen-lockfile | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1.9.0 | |
| with: | |
| commit: 'chore: release' | |
| title: 'chore: release' | |
| publish: pnpm release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ env.NPM_TOKEN }} | |
| PNPM_CONFIG_PROVENANCE: true |