We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad3aa57 commit 9d8a0edCopy full SHA for 9d8a0ed
1 file changed
.github/workflows/release.yml
@@ -31,18 +31,11 @@ jobs:
31
run: bun test
32
33
- name: Build
34
- run: bun run build
35
-
36
- - name: Prepare release asset
37
- id: asset
38
- run: |
39
- OS="$(uname -s | tr '[:upper:]' '[:lower:]')"
40
- ARCH="$(uname -m)"
41
- NAME="bee-${OS}-${ARCH}.tar.gz"
42
- tar -czf "${NAME}" -C dist bee
43
- echo "name=${NAME}" >> "$GITHUB_OUTPUT"
+ run: bun run build:all
44
45
- name: Upload release asset
46
uses: softprops/action-gh-release@v2
47
with:
48
- files: ${{ steps.asset.outputs.name }}
+ files: |
+ dist/bee-*.tar.gz
+ dist/bee-*.zip
0 commit comments