ci: run release update only if any new changes are exist
All checks were successful
build-flake / Build flake (push) Successful in 5m42s
build-flake / Release a new version (push) Successful in 8s
Sync flake lock with main nix-configuration project / Sync flake lock with main nix-configuration project (push) Successful in 6m3s
Sync flake lock with main nix-configuration project / Release a new version (push) Successful in 8s

This commit is contained in:
2026-01-01 20:20:29 +02:00
parent 85a295744b
commit 0eed1c5008

View File

@@ -11,6 +11,8 @@ jobs:
contents: write contents: write
name: Sync flake lock with main nix-configuration project name: Sync flake lock with main nix-configuration project
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs:
changes: ${{ steps.checkChanges.outputs.CHANGES }}
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v6 uses: actions/checkout@v6
@@ -57,5 +59,6 @@ jobs:
git push git push
release: release:
name: Release a new version name: Release a new version
if: ${{ needs.update.outputs.changes == 'y' }}
needs: update needs: update
uses: xaked/actions/.gitea/workflows/cog-release.yml@2.0.0 uses: xaked/actions/.gitea/workflows/cog-release.yml@2.0.0