chore: switch versioning workflows to manual triggers

This commit is contained in:
2025-09-19 17:34:21 +02:00
parent eb626be22c
commit 39d2244e1e
6 changed files with 14 additions and 20 deletions
+3 -5
View File
@@ -1,10 +1,7 @@
name: Mirror to GitHub
on:
push:
branches:
- main
workflow_dispatch: # Allow manual triggering
workflow_dispatch: # Allow manual triggering only
jobs:
mirror:
@@ -131,4 +128,5 @@ jobs:
run: |
echo "✅ Mirror to GitHub workflow completed successfully!"
echo "📊 Repository mirrored to: https://github.com/the-luap/picpeak"
echo "🔒 Sensitive files have been removed from the mirror"
echo "🔒 Sensitive files have been removed from the mirror"
+5 -9
View File
@@ -1,12 +1,7 @@
name: Version and Release
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- '.gitea/**'
- '.drone.yml'
workflow_dispatch:
jobs:
version-bump:
@@ -72,8 +67,8 @@ jobs:
echo "Root files changed: $ROOT_CHANGED"
# Get current versions
BACKEND_VERSION=$(node -p "require('./backend/package.json').version" 2>/dev/null || echo "1.0.0")
FRONTEND_VERSION=$(node -p "require('./frontend/package.json').version" 2>/dev/null || echo "1.0.0")
BACKEND_VERSION=$(node -p "require('./backend/package.json').version" 2>/dev/null || echo "1.1.0")
FRONTEND_VERSION=$(node -p "require('./frontend/package.json').version" 2>/dev/null || echo "1.1.0")
echo "Current backend version: $BACKEND_VERSION"
echo "Current frontend version: $FRONTEND_VERSION"
@@ -264,4 +259,5 @@ jobs:
echo "Version bumped to ${{ needs.version-bump.outputs.new_version }}"
echo "Component(s) changed: ${{ needs.version-bump.outputs.component_changed }}"
echo "Drone will automatically trigger on the new tag"
# Drone CI will automatically trigger on the tag push event
# Drone CI will automatically trigger on the tag push event