diff options
author | Blaž Hrastnik | 2021-05-10 16:19:29 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-10 16:19:29 +0000 |
commit | 98bda8f3c94be81e02e26337e09ad90d95042577 (patch) | |
tree | 61bdadcfa02210e1dc28ea38ca2e0a8e97c589b6 | |
parent | 0190fee1c2fc2aa9558d51e0a608ef9a6b226775 (diff) |
Fix CI builds.
-rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f4df226..c4bef4b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - build: x86_64-linux os: ubuntu-20.04 rust: stable - target: x86_64-unknown-linux-musl + target: x86_64-unknown-linux-gnu cross: false - build: aarch64-linux os: ubuntu-20.04 @@ -89,10 +89,11 @@ jobs: - name: Build archive shell: bash run: | - outdir="$(ci/cargo-out-dir "${{ env.TARGET_DIR }}")" + # outdir="$(ci/cargo-out-dir "${{ env.TARGET_DIR }}")" staging="helix-${{ env.RELEASE_VERSION }}-${{ matrix.target }}" - mkdir -p "$staging"/{complete,doc} - cp {README.md,LICENSE} "$staging/" + mkdir "$staging" + cp README.md "$staging/" + # cp {README.md,LICENSE} "$staging/" # cp {CHANGELOG.md,FAQ.md,GUIDE.md} "$staging/doc/" # cp "$outdir"/{hx.bash,hx.fish,_hx.ps1} "$staging/complete/" # cp complete/_hx "$staging/complete/" |