v3: run.isTest now propagates through child tasks and the trace (#917)

* run.isTest now propagates through child tasks and the trace

* Try to fix the pr checks docker hub rate limit error
This commit is contained in:
Eric Allam
2024-02-28 17:01:31 +00:00
committed by GitHub
parent b6517af522
commit 933cf0f119
13 changed files with 43 additions and 16 deletions
+2 -3
View File
@@ -7,11 +7,10 @@ jobs:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: 🐳 Login to Docker Hub
if: github.event_name == 'push'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.DOCKERHUB_USERNAME || vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN || vars.DOCKERHUB_TOKEN }}
- name: ⬇️ Checkout repo
uses: actions/checkout@v3