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 c130bf8 commit 685ce6dCopy full SHA for 685ce6d
.github/workflows/build.yml
@@ -20,4 +20,20 @@ jobs:
20
run: ./build-newlib
21
22
- name: Build libstdc++
23
- run: ./build-libstdc++
+ run: ./build-libstdc++
24
+
25
+ - name: Package
26
+ if: github.event_name == 'release'
27
+ shell: bash
28
+ run: 7z a stdlibs.zip no-pic pic
29
30
+ - name: Upload
31
32
+ uses: actions/upload-release-asset@v1
33
+ env:
34
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
35
+ with:
36
+ asset_path: ./stdlibs.zip
37
+ upload_url: ${{github.event.release.upload_url}}
38
+ asset_name: stdlibs.zip
39
+ asset_content_type: application/zip
0 commit comments