Skip to content

Commit e816b7e

Browse files
authored
Checkout main during teamscale upload workflow (#3581)
We need to checkout main in order to get the action for uploading to teamscale.
1 parent 3ce40f9 commit e816b7e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/teamscale_upload.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
steps:
19+
# This checks out the latest commit on main, not teh PRs head
20+
# This is needed to get the teamscale-upload action
21+
- name: Checkout sources
22+
uses: actions/checkout@v4.2.2
1923
- name: 'Download artifact'
2024
uses: actions/github-script@v7
2125
with:

0 commit comments

Comments
 (0)