You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/e2e-test.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ jobs:
96
96
LINODE_TOKEN: ${{ env.LINODE_TOKEN }}
97
97
98
98
- name: Upload Test Report as Artifact
99
-
if: always() && github.event_name == 'push'
99
+
if: always()
100
100
uses: actions/upload-artifact@v6
101
101
with:
102
102
name: test-report-file
@@ -172,7 +172,7 @@ jobs:
172
172
process-upload-report:
173
173
runs-on: ubuntu-latest
174
174
needs: [integration-tests]
175
-
if: always() && github.repository == 'linode/linode_api4-python' # Run even if integration tests fail and only on main repository
175
+
if: always() && github.repository == 'linode/linode_api4-python' && github.event_name == 'push' # Run even if integration tests fail and only on main repository and push event
0 commit comments