diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2023-10-28 12:53:14 +0200 |
---|---|---|
committer | Guldoman <giulio.lettieri@gmail.com> | 2023-10-28 12:53:14 +0200 |
commit | 1e2d77a291465132150f9ddaeb50c9f0dc2ed835 (patch) | |
tree | b03ed91dc9038a5fefe7661b6d23c1cb8519cee3 | |
parent | 8cb27b437536ea85065abdc2269605ffd2b0047c (diff) | |
download | lite-xl-colors-1e2d77a291465132150f9ddaeb50c9f0dc2ed835.tar.gz lite-xl-colors-1e2d77a291465132150f9ddaeb50c9f0dc2ed835.zip |
Fix issue with lpm binary having the same name as lpm directory
-rw-r--r-- | .github/workflows/workflow.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6022eae..ed15693 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -11,17 +11,17 @@ jobs: - uses: actions/checkout@v2 - name: Generate table with `lpm` run: | - wget https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/latest/lpm.x86_64-linux -O lpm && chmod +x lpm + wget https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/latest/lpm.x86_64-linux -O lpm-latest && chmod +x lpm-latest # Unstub all stubs so we can make proper previews. - ./lpm --userdir . init . && ./lpm --userdir . color install "*" && ./lpm purge --userdir . - ./lpm exec scripts/make_preview_image.lua colors/* + ./lpm-latest --userdir . init . && ./lpm-latest --userdir . color install "*" && ./lpm-latest purge --userdir . + ./lpm-latest exec scripts/make_preview_image.lua colors/* # Remove everything after the --- so we can regenerate it. perl -pi -e 'exit(0) if $_ =~ m/^\-\-\-/' README.md echo "---" >> README.md echo -e "\n## Dark\n" >> README.md - ./lpm list --repository . --type color --tag "dark" --table 'url,{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}' --type color --header Theme,Preview >> README.md + ./lpm-latest list --repository . --type color --tag "dark" --table 'url,{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}' --type color --header Theme,Preview >> README.md echo -e "\n## Light\n" >> README.md - ./lpm list --repository . --type color --tag "light" --table 'url,{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}' --type color --header Theme,Preview >> README.md + ./lpm-latest list --repository . --type color --tag "light" --table 'url,{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}' --type color --header Theme,Preview >> README.md if ! git diff --exit-code -s README.md; then git config --global user.name "Github Actions" && git config --global user.email "<>" git add README.md previews |