We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b6c974 commit 1887e21Copy full SHA for 1887e21
.github/workflows/push.yml
@@ -86,14 +86,18 @@ jobs:
86
name: fastfetch.deb
87
path: ./fastfetch.deb
88
89
+ - name: Get fastfetch version
90
+ id: get_version_fastfetch
91
+ run: echo "::set-output name=release::$(./fastfetch --version)"
92
+
93
- name: Get latest release version
- id: get_version
94
+ id: get_version_release
95
uses: pozetroninc/github-action-get-latest-release@master
96
with:
97
repository: ${{ github.repository }}
98
99
- name: Push release
- if: steps.get_version.outputs.release != $(./fastfetch --version)
100
+ if: steps.get_version_fastfetch.outputs.release != steps.get_version_release.outputs.release
101
uses: softprops/action-gh-release@v1
102
103
tag_name: $(./fastfetch --version)
0 commit comments