Testing workflow
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m32s
Multi-Platform Release Build / build (true, build-essential gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Successful in 12m31s
Multi-Platform Release Build / build (true, build-essential libssl-dev pkg-config, map[OPENSSL_DIR:/usr PKG_CONFIG_ALLOW_CROSS:1 PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/share/pkgconfig], linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 5m59s
Multi-Platform Release Build / create-release (push) Has been skipped
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m32s
Multi-Platform Release Build / build (true, build-essential gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Successful in 12m31s
Multi-Platform Release Build / build (true, build-essential libssl-dev pkg-config, map[OPENSSL_DIR:/usr PKG_CONFIG_ALLOW_CROSS:1 PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/share/pkgconfig], linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 5m59s
Multi-Platform Release Build / create-release (push) Has been skipped
This commit is contained in:
parent
845c49f664
commit
a31c7a4a3e
1 changed files with 12 additions and 12 deletions
|
|
@ -78,15 +78,15 @@ jobs:
|
|||
with:
|
||||
args: >
|
||||
sh -c "
|
||||
echo 'OPENSSL_DIR:' $OPENSSL_DIR
|
||||
echo 'OPENSSL_DIR:' $OPENSSL_DIR &&
|
||||
apt-get update && apt-get install -y ${{ matrix.deps }} &&
|
||||
rustup target add x86_64-unknown-linux-gnu &&
|
||||
cargo build --release --target x86_64-unknown-linux-gnu &&
|
||||
mkdir -p /github/workspace/release-artifacts &&
|
||||
cp target/x86_64-unknown-linux-gnu/release/uptime-kuma-dashboard /github/workspace/release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
strip /github/workspace/release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
chmod +x /github/workspace/release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
ls -lh /github/workspace/release-artifacts/"
|
||||
mkdir -p release-artifacts &&
|
||||
cp target/x86_64-unknown-linux-gnu/release/uptime-kuma-dashboard release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
strip release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
chmod +x release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||
ls -lh release-artifacts/"
|
||||
env: ${{ matrix.env }}
|
||||
options: --platform ${{ matrix.platform }}
|
||||
|
||||
|
|
@ -99,9 +99,9 @@ jobs:
|
|||
apt-get update && apt-get install -y ${{ matrix.deps }} &&
|
||||
rustup target add x86_64-pc-windows-gnu &&
|
||||
cargo build --release --target x86_64-pc-windows-gnu &&
|
||||
mkdir -p /github/workspace/release-artifacts &&
|
||||
cp target/x86_64-pc-windows-gnu/release/uptime-kuma-dashboard.exe /github/workspace/release-artifacts/uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe &&
|
||||
ls -lh /github/workspace/release-artifacts/"
|
||||
mkdir -p release-artifacts &&
|
||||
cp target/x86_64-pc-windows-gnu/release/uptime-kuma-dashboard.exe release-artifacts/uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe &&
|
||||
ls -lh release-artifacts/"
|
||||
env: ${{ matrix.env }}
|
||||
options: --platform ${{ matrix.platform }}
|
||||
|
||||
|
|
@ -141,12 +141,12 @@ jobs:
|
|||
- name: Create Release
|
||||
uses: https://code.forgejo.org/actions/forgejo-release@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
||||
with:
|
||||
direction: upload
|
||||
release-dir: release-artifacts
|
||||
title: "Release ${{ github.ref_name }}"
|
||||
tag: ${{ github.ref_name }}
|
||||
title: "Release ${{ forgejo.ref_name }}"
|
||||
tag: ${{ forgejo.ref_name }}
|
||||
release-notes:: |
|
||||
## 🚀 Multi-Platform Release
|
||||
Compiled on runner **${{ env.RUNNER_ARCH }}**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue