Skip to content

Commit d6afbb7

Browse files
Change always statement
1 parent 8e26d82 commit d6afbb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pkg-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,23 +90,23 @@ jobs:
9090
9191
- name: "Get job status"
9292
id: job-status
93-
if: always()
93+
if: ${{ always() }}
9494
run: |
9595
PKG="${{ matrix.package }}"
9696
STATUS="${{ job.status }}"
9797
echo ${STATUS} > "${PKG}.txt"
9898
9999
- name: "Upload job status"
100100
uses: actions/upload-artifact@v2
101-
if: always()
101+
if: ${{ always() }}
102102
with:
103103
name: ${{ matrix.package }}
104104
path: "${{ matrix.package }}.txt"
105105

106106
report:
107107
name: "Report"
108108
needs: individual-package
109-
if: always()
109+
if: ${{ always() }}
110110
runs-on: ubuntu-18.04
111111
env:
112112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)