diff options
author | 2024-11-22 11:44:04 +0000 | |
---|---|---|
committer | 2024-11-22 11:44:04 +0000 | |
commit | 82d89a7cdb62ff0948c0c9a09ed03bdef670e930 (patch) | |
tree | 5ee701f09ab1f79221934591aa54ce2a31bd451f | |
parent | a0811758e3a72185d50f4ac0a565db87a27593c0 (diff) | |
parent | c6a31e3978efef26cb376dcd23ab4eb5e2a8fd4f (diff) | |
download | astro-82d89a7cdb62ff0948c0c9a09ed03bdef670e930.tar.gz astro-82d89a7cdb62ff0948c0c9a09ed03bdef670e930.tar.zst astro-82d89a7cdb62ff0948c0c9a09ed03bdef670e930.zip |
Merge branch 'main' into next
-rw-r--r-- | .github/workflows/snapshot-release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/snapshot-release.yml b/.github/workflows/snapshot-release.yml index 5ea024824..ae8d3060f 100644 --- a/.github/workflows/snapshot-release.yml +++ b/.github/workflows/snapshot-release.yml @@ -85,6 +85,8 @@ jobs: id: changesets run: | pnpm exec changeset status --output status.output.json 2>&1 + # Snapshots don't work in pre mode. See https://github.com/changesets/changesets/issues/1195 + pnpm exec changeset pre exit || true pnpm exec changeset version --snapshot ${{ steps.getSnapshotName.outputs.result }} EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) @@ -102,8 +104,6 @@ jobs: id: publish run: | GITHUB_ACTIONS=0 pnpm run build > build.output.txt 2>&1 - # Snapshots don't work in pre mode. See https://github.com/changesets/changesets/issues/1195 - pnpm exec changeset pre exit || true pnpm exec changeset publish --tag experimental--${{ steps.getSnapshotName.outputs.result }} > publish.output.txt 2>&1 EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) |