mirror of
https://github.com/house-of-vanity/rexec.git
synced 2025-07-07 16:54:07 +00:00
Fix CI
This commit is contained in:
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@ -32,7 +32,6 @@ jobs:
|
||||
build_arch:
|
||||
name: Build Arch Linux package
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
@ -60,19 +59,24 @@ jobs:
|
||||
|
||||
release:
|
||||
name: Release binary
|
||||
needs: build
|
||||
needs: ["build", "build_arch"]
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/download-artifact@master
|
||||
id: download
|
||||
id: download_binary
|
||||
with:
|
||||
name: ${{ env.BINARY_NAME }}_x86_64-linux-musl
|
||||
path: ${{ env.BINARY_NAME }}_x86_64-linux-musl
|
||||
- uses: actions/download-artifact@master
|
||||
id: download_pkgbuild
|
||||
with:
|
||||
name: PKGBUILD
|
||||
path: PKGBUILD
|
||||
- uses: ncipollo/release-action@v1
|
||||
name: Update release page
|
||||
with:
|
||||
artifacts: ${{ steps.download.outputs.download-path }}/*
|
||||
artifacts: "${{ steps.download_pkgbuild.outputs.download-path }}/*,${{ steps.download_binary.outputs.download-path }}/*"
|
||||
allowUpdates: true
|
||||
body: Static build for x86_64-linux using MUSL
|
||||
|
Reference in New Issue
Block a user