Skip to content

Commit 85b5958

Browse files
committed
fix(ci): make release job manual-only and revert v0.14.3
The release job ran automatically on push to main, which caused unintended v0.14.2/v0.14.3 releases from the regenerated changelog. Gate the release job on workflow_dispatch so it only runs when manually triggered, and revert the v0.14.3 release entry along with the version bump.
1 parent a7c0a0d commit 85b5958

3 files changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
pull_request:
8+
workflow_dispatch:
89

910
permissions:
1011
contents: write
@@ -108,7 +109,7 @@ jobs:
108109
release:
109110
name: Release
110111
needs: [lint, check, format, build, test]
111-
if: github.event_name != 'pull_request'
112+
if: github.event_name == 'workflow_dispatch'
112113
runs-on: ubuntu-latest
113114

114115
outputs:

CHANGELOG.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
# Changelog
22

3-
4-
## v0.14.3
5-
6-
[compare changes](https://github.com/DontMash/shapez-vortex/compare/v0.14.2...v0.14.3)
7-
83
## v0.14.2
94

10-
115
### 🚀 Enhancements
126

137
- Add original shape model exports feat: "update" README ([fea7e7a](https://github.com/DontMash/shapez-vortex/commit/fea7e7a))
@@ -165,7 +159,7 @@
165159
- Update fullscreen assignment ([7eb48d9](https://github.com/DontMash/shapez-vortex/commit/7eb48d9))
166160
- Downgrade threejs dependency ([588d57a](https://github.com/DontMash/shapez-vortex/commit/588d57a))
167161
- Use 'm' as shape color instead of 'p' feat: add support for up to 6 shape layer chore: remove console.error ([4518c3e](https://github.com/DontMash/shapez-vortex/commit/4518c3e))
168-
- Use partial model for PipeGate glas ([13f1bf1](https://github.com/DontMash/shapez-vortex/commit/13f1bf1))
162+
- Use partial model for PipeGate glas ([13f1bf1](https://github.com/DontMash/shapez-vortex/commit/13f1bf1))
169163
- Update lint/format command ([1d9f5e9](https://github.com/DontMash/shapez-vortex/commit/1d9f5e9))
170164
- Update wording on "more" blueprints ([15b89d7](https://github.com/DontMash/shapez-vortex/commit/15b89d7))
171165
- Add length condition to latest blueprint list ([9fb78ec](https://github.com/DontMash/shapez-vortex/commit/9fb78ec))
@@ -414,4 +408,3 @@
414408

415409
- Sören Maschmann ([@DontMash](https://github.com/DontMash))
416410
- Sören Maschmann <smaschmann@slashwhy.de>
417-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "shapez-visualizer",
3-
"version": "0.14.3",
3+
"version": "0.14.2",
44
"type": "module",
55
"private": true,
66
"repository": {

0 commit comments

Comments
 (0)