From 9615488aee5737077527bb11f638c1a35fa58900 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 15:02:23 +0100 Subject: [PATCH] chore: Update versions (#78) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- ...ghty-owls-marry.md => all-parents-draw.md} | 0 .github/workflows/general.yaml | 27 ++++--------------- dpkit/CHANGELOG.md | 6 +++++ dpkit/package.json | 2 +- 4 files changed, 12 insertions(+), 23 deletions(-) rename .changeset/{mighty-owls-marry.md => all-parents-draw.md} (100%) diff --git a/.changeset/mighty-owls-marry.md b/.changeset/all-parents-draw.md similarity index 100% rename from .changeset/mighty-owls-marry.md rename to .changeset/all-parents-draw.md diff --git a/.github/workflows/general.yaml b/.github/workflows/general.yaml index 007db7b2..80ffdf2c 100644 --- a/.github/workflows/general.yaml +++ b/.github/workflows/general.yaml @@ -131,35 +131,18 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - distribute: - if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') - runs-on: ubuntu-latest - needs: [test-linux, test-macos, test-windows] - permissions: - contents: write - steps: - - name: Checkout Repo - uses: actions/checkout@v4 - - name: Setup pnpm - uses: pnpm/action-setup@v4 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - cache: pnpm - node-version-file: package.json - - name: Install Dependencies - run: pnpm ci:install - - name: Build Packages - run: pnpm build - name: Setup Bun uses: oven-sh/setup-bun@v2 - name: Compile Binaries run: pnpm compile + - name: Extract version + id: version + run: echo "version=$(jq -r .version dpkit/package.json)" >> $GITHUB_OUTPUT - name: Add assets to the release + if: steps.changesets.outputs.published == 'true' uses: softprops/action-gh-release@v2 with: - tag_name: ${{ inputs.tag_name }} + tag_name: dpkit@${{ steps.version.outputs.version }} files: dpkit/compile/build/*.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/dpkit/CHANGELOG.md b/dpkit/CHANGELOG.md index 72889635..b8bc7939 100644 --- a/dpkit/CHANGELOG.md +++ b/dpkit/CHANGELOG.md @@ -1,5 +1,11 @@ # dpkit +## 0.12.4 + +### Patch Changes + +- 40b85b1: Fixed releasing + ## 0.12.3 ### Patch Changes diff --git a/dpkit/package.json b/dpkit/package.json index a590d8bd..05d69675 100644 --- a/dpkit/package.json +++ b/dpkit/package.json @@ -1,7 +1,7 @@ { "name": "dpkit", "type": "module", - "version": "0.12.3", + "version": "0.12.4", "bin": { "dp": "./build/entrypoints/run.js" },