Skip to content

Commit 58b91a5

Browse files
committed
chore: update GitHub workflows and remove deprecated files
1 parent a5358c0 commit 58b91a5

16 files changed

+9
-582
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ concurrency:
77
on:
88
push:
99
tags:
10-
- "plus/v*"
10+
- "*"
1111

1212
jobs:
1313
# Tests already passed before tag was created, so just build and deploy
@@ -34,7 +34,7 @@ jobs:
3434
id: extract
3535
run: |
3636
TAG=${{ github.ref_name }}
37-
VERSION=$(echo $TAG | sed 's|plus/v||')
37+
VERSION=$TAG
3838
echo "version=$VERSION" >> $GITHUB_OUTPUT
3939
echo "Publishing version: $VERSION"
4040

.github/workflows/bump_version.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,17 @@ jobs:
5656
--conventional-commits \
5757
--force-publish \
5858
--yes \
59-
--no-push
59+
--no-push \
60+
--no-git-tag-version
6061
6162
# Get the new version
6263
VERSION=$(node -p "require('./core/package.json').version")
6364
echo "New version: $VERSION"
6465
65-
# Create a unified tag for all packages
66-
git tag -d "v$VERSION" 2>/dev/null || true
67-
git tag "plus/v$VERSION"
66+
# Commit version changes and create tag
67+
git add -A
68+
git commit -m "chore(release): $VERSION" || true
69+
git tag "$VERSION"
6870
6971
- name: Push to origin
7072
run: |

.github/workflows/needs-reply.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/publish-android.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/publish-capacitor-plus.yml

Lines changed: 0 additions & 155 deletions
This file was deleted.

.github/workflows/publish-ios.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/publish-latest.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/publish-npm-alpha.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)