forked from WebAssembly/wasi-libc
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 817 Bytes
/
release.yml
File metadata and controls
35 lines (29 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Release Artifacts
on:
release:
types:
- published
jobs:
build:
uses: ./.github/workflows/main.yml
secrets: inherit
release-artifacts:
needs: build
runs-on: ubuntu-24.04
steps:
- name: Download sysroot (wasm32-wasip1-threads)
uses: actions/download-artifact@v4
with:
name: sysroot-wasm32-wasip1-threads.tgz
path: sysroot-wasm32-wasip1-threads
- name: List files
run: ls -la
- name: Compress sysroot
run: tar -czf sysroot-wasm32-wasip1-threads.tgz -C sysroot-wasm32-wasip1-threads .
- name: Push artifacts to release
uses: softprops/action-gh-release@v2
with:
prerelease: false
token: ${{ secrets.RELEASE_TOKEN }}
files: |
sysroot-*.tgz