Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,15 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v2
with:
repo: ufo5260987423/scheme-langserver
name: Scheme LangServer Auto-generated Build
tag_name: automated_build
files: |
build/scheme-langserver-x86_64-linux-glibc
build/scheme-langserver-x86_64-linux-musl
body: |
This is an automated release of Scheme LangServer.

**Commit:** ${{ github.sha }}
**Branch:** ${{ github.ref_name }}
**Pipeline Run:** ${{ github.run_id }}

4 changes: 2 additions & 2 deletions Dockerfile.musl
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ RUN akku install
FROM alpine:latest

ENV DEBIAN_FRONTEND=noninteractive
RUN apk update && apk add \
git alpine-sdk util-linux-dev libuuid make
RUN apk update && apk add --no-cache \
git alpine-sdk util-linux-dev libuuid make util-linux-static

# add chez scheme
COPY --from=build-chez /usr/bin/scheme /usr/bin/
Expand Down
Loading