Skip to content

Commit 0c936ca

Browse files
First Release? v2
1 parent d17aae5 commit 0c936ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ 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
@@ -72,7 +72,7 @@ jobs:
7272
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:
7777
- name: "Download binary"
7878
uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)