Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev authored Oct 3, 2023
1 parent 056d8bf commit b46bb45
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
path: ./dist

dist-x86_64-unknown-alpine-musl:
name: dist (x86_64-unknown-linux-musl)
name: dist (x86_64-unknown-alpine-musl)
runs-on: ubuntu-latest
env:
LLM_LS_TARGET: x86_64-unknown-linux-musl
Expand All @@ -116,13 +116,13 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: dist-x86_64-unknown-linux-musl
name: dist-x86_64-unknown-alpine-musl
path: ./dist

publish:
name: publish
runs-on: ubuntu-latest
needs: ["dist", "dist-x86_64-unknown-linux-musl"]
needs: ["dist", "dist-x86_64-unknown-alpine-musl"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -154,6 +154,10 @@ jobs:
with:
name: dist-x86_64-unknown-linux-musl
path: dist
- uses: actions/download-artifact@v1
with:
name: dist-x86_64-unknown-alpine-musl
path: dist
- uses: actions/download-artifact@v1
with:
name: dist-aarch64-unknown-linux-gnu
Expand Down

0 comments on commit b46bb45

Please sign in to comment.