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 534f871 commit cd3b735Copy full SHA for cd3b735
.github/workflows/build.yml
@@ -64,3 +64,14 @@ jobs:
64
with:
65
name: sysroot
66
path: artifacts/sysroot-${{ matrix.arch }}.tar.gz
67
+
68
+ - name: Upload release artifacts
69
+ if: |
70
+ github.event_name == 'release' &&
71
+ github.repository_owner == 'toitlang'
72
+ uses: svenstaro/upload-release-action@v2
73
+ with:
74
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
75
+ file: artifacts/sysroot-${{ matrix.arch }}.tar.gz
76
+ tag: ${{ github.ref }}
77
+ overwrite: true
0 commit comments