diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2022-11-02 23:56:57 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2022-11-02 23:56:57 -0400 |
commit | 9c656760ac767cc5ef5a49a96c220cb54bbe3e98 (patch) | |
tree | 696d316b11db9aeb1bea7f8cff39823d41701aa4 /.github/workflows/build.yml | |
parent | c50cb4c488f2e5dd14692b5625adce89c5f00462 (diff) | |
download | lite-xl-plugin-manager-9c656760ac767cc5ef5a49a96c220cb54bbe3e98.tar.gz lite-xl-plugin-manager-9c656760ac767cc5ef5a49a96c220cb54bbe3e98.zip |
Changed workflow to not bother pushing, and to simply skip.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ed7949..468bbb4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,12 +35,6 @@ jobs: export RELEASE=`git tag --points-at HEAD | head -c 4 | sed 's/^v//'` gh release delete -y v$RELEASE || true; gh release create -t v$RELEASE v$RELEASE lpm.x86_64-linux lpm.x86_64-windows.exe - git checkout master && git config user.email "adamdharrison@gmail.com" && git config user.name "Adam Harrison" - cat manifest.json | - jq ".plugins[0].files[0].checksum = "'"'"`sha256sum lpm.x86_64-linux | sed 's/ .*//'`"'"' | - jq ".plugins[0].files[1].checksum = "'"'"`sha256sum lpm.x86_64-windows.exe | sed 's/ .*//'`"'"' | - jq ".plugins[0].version = "'"'"$RELEASE"'"' > new-manifest.json - mv new-manifest.json manifest.json && git add manifest.json && git commit -m 'Updated manifest.json with updated release checksums.' && git push fi |