@@ -55,44 +55,44 @@ jobs:
5555 uses : github/codeql-action/analyze@v1
5656
5757 - name : Upload binary
58- if : github.event_name == " push"
58+ if : github.event_name == ' push'
5959 uses : actions/upload-artifact@v3
6060 with :
6161 name : fastfetch
6262 path : ./fastfetch
6363
6464 - name : Upload deb package
65- if : github.event_name == " push"
65+ if : github.event_name == ' push'
6666 uses : actions/upload-artifact@v3
6767 with :
6868 name : fastfetch.deb
6969 path : ./packaging/deb/fastfetch.deb
7070
7171 deploy :
72- name : " Create GitHub release"
72+ name : Create GitHub release
7373 runs-on : ubuntu-latest
7474 needs : check
75- if : github.event_name == " push"
75+ if : github.event_name == ' push'
7676 steps :
77- - name : " Download binary"
77+ - name : Download binary
7878 uses : actions/download-artifact@v3
7979 with :
8080 name : fastfetch
8181 path : ./fastfetch
8282
83- - name : " Download deb package"
83+ - name : Download deb package
8484 uses : actions/download-artifact@v3
8585 with :
8686 name : fastfetch.deb
8787 path : ./fastfetch.deb
8888
89- - name : " Get latest release version"
89+ - name : Get latest release version
9090 id : get_version
9191 uses : pozetroninc/github-action-get-latest-release@master
9292 with :
9393 repository : ${{ github.repository }}
9494
95- - name : " Create GitHub release"
95+ - name : Push release
9696 if : steps.get_version.outputs.release != $(./fastfetch --version)
9797 uses : softprops/action-gh-release@v1
9898 with :
0 commit comments