We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c62ce2 commit af5b599Copy full SHA for af5b599
.github/workflows/blank.yml
@@ -45,8 +45,11 @@ jobs:
45
- name: Run the bootstrap script
46
run: ./boot.sh ${{ matrix.arch }}
47
48
- # - name: Upload sysroot
49
- # uses: alehechka/upload-tartifact@v1
50
- # with:
51
- # name: sysroot-${{ matrix.arch }}
52
- # path: sysroot/
+ - name: Create tarball
+ run: |
+ tar -cf sysroot-${{ matrix.arch }}.tar sysroot/
+
+ - uses: actions/upload-artifact@v4
53
+ with:
54
+ name: sysroot-${{ matrix.arch }}
55
+ path: sysroot-${{ matrix.arch }}.tar
0 commit comments