Set device-name to agent name + host device in auth flow #30
Workflow file for this run
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] | |
| # permissions: | |
| # contents: write # Required for Changesets to push branches | |
| # id-token: write # Required for OIDC authentication | |
| # pull-requests: write # Required for Changesets to create PRs | |
| # concurrency: | |
| # group: ${{ github.workflow }}-${{ github.ref }} | |
| # cancel-in-progress: false | |
| # jobs: | |
| # changesets: | |
| # name: changeset release | |
| # if: github.event_name == 'push' | |
| # runs-on: ubuntu-22.04 | |
| # environment: | |
| # name: npm-shop-cli | |
| # url: https://www.npmjs.com/package/@shopify/shop-cli | |
| # permissions: | |
| # contents: write | |
| # pull-requests: write | |
| # id-token: write | |
| # steps: | |
| # - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| # with: | |
| # fetch-depth: 0 | |
| # - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 | |
| # with: | |
| # version: 10.28.0 | |
| # - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| # with: | |
| # node-version: 24 | |
| # cache: pnpm | |
| # - run: pnpm install --frozen-lockfile | |
| # - uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0 | |
| # with: | |
| # version: pnpm version-packages | |
| # publish: pnpm release | |
| # env: | |
| # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # NPM_CONFIG_PROVENANCE: "true" | |
| # NPM_TOKEN: "" | |
| # NODE_AUTH_TOKEN: "" |