diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-04-21 11:05:24 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-04-21 11:05:24 -0400 |
commit | 9b97b06d3849a7a95f2f8b2dcd74906b144011a8 (patch) | |
tree | 57f4f7627a4d15049a8dd211e3524b07f44fd099 /.github | |
parent | 8afee460a63fad4287c239bcaa8d9c62f0d0ee8f (diff) | |
download | lite-xl-plugins-9b97b06d3849a7a95f2f8b2dcd74906b144011a8.tar.gz lite-xl-plugins-9b97b06d3849a7a95f2f8b2dcd74906b144011a8.zip |
Reenabled CI.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/workflow.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f378bfb..e3c1ccc 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -23,9 +23,9 @@ jobs: ./lpm-latest list --table url,description --header Library,Description --type library --userdir . >> README.md ./lpm-latest exec 'common.write("manifest.json", json.encode(json.decode(common.read("manifest.json")), { pretty = true }) .. "\n")' --userdir . ./lpm-latest purge --userdir . - #if ! git diff --exit-code -s README.md manifest.json; then - # git config --global user.name "Github Actions" && git config --global user.email "<>" - # git add README.md manifest.json - # git commit -m '[CI] Updated README.md and manifest.json.' - # git push - #fi + if ! git diff --exit-code -s README.md manifest.json; then + git config --global user.name "Github Actions" && git config --global user.email "<>" + git add README.md manifest.json + git commit -m '[CI] Updated README.md and manifest.json.' + git push + fi |