Skip to content

Commit 1701236

Browse files
committed
Add checkout step to GitHub Actions workflow
The checkout step is now included in the workflow to ensure the repository is available for subsequent steps. This change is crucial for successful artifact uploads and overall workflow execution.
1 parent aab6afc commit 1701236

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464
matrix:
6565
artifact_name: [ "HI2UC", "HIColorer" ]
6666
steps:
67+
- name: Checkout repository
68+
uses: actions/checkout@v3
69+
6770
- name: Upload ${{matrix.artifact_name}}
6871
uses: ./.github/workflows/plugin-upload
6972
with:

0 commit comments

Comments
 (0)