fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3324 from hey-api/ci/fix-publish-2

ci: add snapshot releases

authored by

Lubos and committed by
GitHub
e0c14539 0e7dd853

+43 -1
+33
.github/workflows/release.yml
··· 69 69 with: 70 70 branch: ${{ env.CURRENT_BRANCH }} 71 71 commit_message: 'chore: update lock file' 72 + 73 + snapshot: 74 + name: Snapshot Release 75 + runs-on: ubuntu-latest 76 + needs: release 77 + if: github.ref == 'refs/heads/main' 78 + env: 79 + TURBO_TEAM: ${{ secrets.TURBO_TEAM }} 80 + TURBO_TELEMETRY_DISABLED: 1 81 + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} 82 + steps: 83 + - uses: actions/checkout@v6.0.2 84 + 85 + - uses: pnpm/action-setup@v4.2.0 86 + 87 + - uses: actions/setup-node@v6 88 + with: 89 + node-version-file: '.nvmrc' 90 + cache: pnpm 91 + 92 + - name: Install Dependencies 93 + run: pnpm install --frozen-lockfile 94 + 95 + - name: Build packages 96 + run: pnpm turbo run build --filter="@hey-api/**" 97 + 98 + - name: Publish snapshot 99 + run: | 100 + pnpm changeset version --snapshot next 101 + pnpm changeset publish --tag next 102 + env: 103 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 104 + NPM_CONFIG_PROVENANCE: true
+9
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.92.1 4 + 5 + ### Patch Changes 6 + 7 + ### Updated Dependencies: 8 + 9 + - @hey-api/shared@0.1.2 10 + - @hey-api/codegen-core@0.7.0 11 + 3 12 ## 0.92.0 4 13 5 14 ### Minor Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.92.0", 3 + "version": "0.92.1", 4 4 "description": "🌀 OpenAPI to TypeScript codegen. Production-ready SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.", 5 5 "keywords": [ 6 6 "angular",