We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a44b303 commit ffdda4bCopy full SHA for ffdda4b
1 file changed
.github/workflows/check-pull-requests-for-documentation-warnings.yml
@@ -38,12 +38,17 @@ jobs:
38
- name: Download package artifact
39
uses: actions/download-artifact@v5
40
with:
41
- path: .
42
- name: SwiftUsd-package-${{ github.run_id }}
+ path: SwiftUsd.tar.gz
+ name: SwiftUsd-package-${{ github.run_id }}.tar.gz
43
+
44
+ - name: Untar package artifact
45
+ run: |
46
+ mkdir ./SwiftUsd
47
+ tar -xzf ./SwiftUsd.tar.gz/SwiftUsd.tar.gz -C ./SwiftUsd
48
49
- name: Check for documentation warnings
50
run: |
- swift run --package-path ./scripts/docc build-documentation
- swift run --package-path ./scripts/docc check-documentation
51
+ swift run --package-path ./SwiftUsd/scripts/docc build-documentation
52
+ swift run --package-path ./SwiftUsd/scripts/docc check-documentation
53
54
0 commit comments