diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-12 20:31:27 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-12 20:31:27 +1000 |
| commit | caf26e7c5b8089a5eeb21564e9d39436db9ee246 (patch) | |
| tree | b09c0bf7475d3db33f76e4f35a5f7bb71c062ddf /.github/workflows/update-flake-inputs.yml | |
| parent | ci: update flake inputs daily (diff) | |
| download | caelestia-cli-caf26e7c5b8089a5eeb21564e9d39436db9ee246.tar.gz caelestia-cli-caf26e7c5b8089a5eeb21564e9d39436db9ee246.tar.bz2 caelestia-cli-caf26e7c5b8089a5eeb21564e9d39436db9ee246.zip | |
ci: fix
Diffstat (limited to '.github/workflows/update-flake-inputs.yml')
| -rw-r--r-- | .github/workflows/update-flake-inputs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-flake-inputs.yml b/.github/workflows/update-flake-inputs.yml index c9d2589..f8f61b8 100644 --- a/.github/workflows/update-flake-inputs.yml +++ b/.github/workflows/update-flake-inputs.yml @@ -100,7 +100,7 @@ jobs: - name: Check for changes id: check - run: echo modified=$(git diff --exit-code flake.lock && echo 'false' || echo 'true') >> $GITHUB_OUTPUT + run: echo modified=$(git diff --exit-code flake.lock &>/dev/null && echo 'false' || echo 'true') >> $GITHUB_OUTPUT - name: Commit and push changes if: steps.check.outputs.modified == 'true' |