Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrofavarin committed Sep 30, 2024
1 parent d01fc5d commit 97add84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
id: fetch-release
run: |
curl -s https://api.github.com/repos/rclone/rclone/releases/latest | jq -r ".tag_name" > release-versions/latest.txt
echo "success=$(test \"$(cat release-versions/latest.txt)\" != 'null' && echo true || echo false)" >> $GITHUB_OUTPUT
echo "success=$(test \"$(cat release-versions/latest.txt)\" != 'null' && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT
- name: Check for modified files
id: git-check
run: echo "modified=$([ -z "$(git status --porcelain)" ] && echo false || echo true)" >> >> $GITHUB_OUTPUT
run: echo "modified=$([ -z "$(git status --porcelain)" ] && echo 'false' || echo 'true')" >> >> $GITHUB_OUTPUT

- name: Commit latest release version
if: |
Expand Down

0 comments on commit 97add84

Please sign in to comment.