ci(deb): fix cargo deb output directory error (#390)

Fixes #384
This commit is contained in:
Alexandre Pasmantier 2025-03-17 00:05:53 +01:00 committed by alexpasmantier
parent d601eb2c02
commit f954e81e4c

View File

@ -1,11 +1,18 @@
name: CD # Continuous Deployment name: CD # Continuous Deployment
permissions: permissions:
contents: write contents: write
on: on:
push: push:
tags: tags:
- '[v]?[0-9]+.[0-9]+.[0-9]+' - '[v]?[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch: workflow_dispatch:
inputs:
tag:
description: 'Tag to deploy'
required: true
default: '0.0.0'
jobs: jobs:
create-release: create-release:
name: Create a release name: Create a release
@ -17,6 +24,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Generate a changelog - name: Generate a changelog
uses: orhun/git-cliff-action@v4 uses: orhun/git-cliff-action@v4
with: with:
@ -24,14 +32,19 @@ jobs:
args: --latest --strip header args: --latest --strip header
env: env:
OUTPUT: BODY.md OUTPUT: BODY.md
- name: Publish on GitHub - name: Publish on GitHub
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
prerelease: false prerelease: false
bodyFile: BODY.md bodyFile: BODY.md
publish-release: publish-release:
name: Publishing for ${{ matrix.os }} name: Publishing for ${{ matrix.os }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
include: include:
@ -77,6 +90,7 @@ jobs:
binary-postfix: "" binary-postfix: ""
use-cross: true use-cross: true
binary-name: tv binary-name: tv
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -84,7 +98,9 @@ jobs:
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: stable toolchain: stable
target: ${{ matrix.target }} target: ${{ matrix.target }}
profile: minimal profile: minimal
override: true override: true
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
@ -92,12 +108,18 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
use-cross: ${{ matrix.use-cross }} use-cross: ${{ matrix.use-cross }}
toolchain: stable toolchain: stable
args: --release --target ${{ matrix.target }} args: --release --target ${{ matrix.target }}
- name: install strip command - name: install strip command
shell: bash shell: bash
run: |2 run: |
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
sudo apt update sudo apt update
@ -105,7 +127,8 @@ jobs:
fi fi
- name: Packaging final binary - name: Packaging final binary
shell: bash shell: bash
run: |2 run: |
cd target/${{ matrix.target }}/release cd target/${{ matrix.target }}/release
@ -142,74 +165,97 @@ jobs:
run: | run: |
Compress-Archive -Path "$env:BINARY_NAME" -Destination "$($env:RELEASE_NAME).zip" Compress-Archive -Path "$env:BINARY_NAME" -Destination "$($env:RELEASE_NAME).zip"
(Get-FileHash "$($env:RELEASE_NAME).zip" -Algorithm SHA256).Hash.ToLower() > "$($env:RELEASE_NAME).zip.sha256" (Get-FileHash "$($env:RELEASE_NAME).zip" -Algorithm SHA256).Hash.ToLower() > "$($env:RELEASE_NAME).zip.sha256"
- name: Releasing assets - name: Releasing assets
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
with: with:
files: | files: |
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.tar.gz target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.tar.gz
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.zip target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.zip
target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.sha256 target/${{ matrix.target }}/release/${{ matrix.binary-name }}-*.sha256
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-release-deb: publish-release-deb:
name: publish-release-deb for ${{ matrix.target }} name: publish-release-deb
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-musl
env: env:
TARGET: ${{ matrix.target }} TARGET: x86_64-unknown-linux-musl
# Emit backtraces on panics. # Emit backtraces on panics.
RUST_BACKTRACE: 1 RUST_BACKTRACE: 1
# Since we're distributing the dpkg, we don't know whether the user will # Since we're distributing the dpkg, we don't know whether the user will
# have PCRE2 installed, so just do a static build. # have PCRE2 installed, so just do a static build.
PCRE2_SYS_STATIC: 1 PCRE2_SYS_STATIC: 1
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install packages (Ubuntu)
shell: bash - name: Install packages (Ubuntu)
run: "if ! command -V sudo; then\n apt-get update\n apt-get install -y --no-install-recommends sudo\nfi\nsudo apt-get update\nsudo apt-get install -y --no-install-recommends \\\n zsh xz-utils liblz4-tool musl-tools brotli zstd \n" shell: bash
- name: Install Rust run: |
uses: dtolnay/rust-toolchain@master if ! command -V sudo; then
with: apt-get update
toolchain: nightly apt-get install -y --no-install-recommends sudo
target: ${{ env.TARGET }} fi
# for some reason, the above action doesn't seem to set the target correctly sudo apt-get update
- name: Add rustup target sudo apt-get install -y --no-install-recommends \
shell: bash zsh xz-utils liblz4-tool musl-tools brotli zstd
run: |
rustup target add ${{ env.TARGET }} - name: Install Rust
- name: Install cargo-deb uses: dtolnay/rust-toolchain@master
shell: bash with:
run: | toolchain: nightly
cargo install cargo-deb target: ${{ env.TARGET }}
- name: Create deployment directory
shell: bash # for some reason, the above action doesn't seem to set the target correctly
run: | - name: Add rustup target
dir=deployment/deb shell: bash
mkdir -p "$dir" run: |
echo "DEPLOY_DIR=$dir" >> $GITHUB_ENV rustup target add x86_64-unknown-linux-musl
- name: Build release binary
shell: bash # for some reason, the above action doesn't seem to set the target correctly
run: | - name: Add rustup target
cargo deb --profile deb --target ${{ env.TARGET }} shell: bash
version="${{ github.ref_name }}" run: |
echo "DEB_DIR=target/${{ env.TARGET }}/debian" >> $GITHUB_ENV rustup target add x86_64-unknown-linux-musl
echo "DEB_NAME=television_$version-1_${{ env.TARGET }}.deb" >> $GITHUB_ENV
- name: Create sha256 sum of deb file - name: Install cargo-deb
shell: bash shell: bash
run: | run: |
cd "$DEB_DIR" cargo install cargo-deb
sum="$DEB_NAME.sha256"
shasum -a 256 "$DEB_NAME" > "$sum" - name: Create deployment directory
echo "SUM=$sum" >> $GITHUB_ENV shell: bash
- name: Upload release archive run: |
env: dir=deployment/deb
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} mkdir -p "$dir"
shell: bash echo "DEPLOY_DIR=$dir" >> $GITHUB_ENV
run: |
cd "$DEB_DIR" - name: Build release binary
version="${{ github.ref_name }}" shell: bash
gh release upload "$version" "$DEB_NAME" "$SUM" run: |
cargo deb --profile deb --target ${{ env.TARGET }}
version="${{ github.ref_name }}"
echo "DEB_DIR=target/${{ env.TARGET }}/debian" >> $GITHUB_ENV
echo "DEB_NAME=television_$version-1_amd64.deb" >> $GITHUB_ENV
- name: Create sha256 sum of deb file
shell: bash
run: |
cd "$DEB_DIR"
sum="$DEB_NAME.sha256"
shasum -a 256 "$DEB_NAME" > "$sum"
echo "SUM=$sum" >> $GITHUB_ENV
- name: Upload release archive
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
cd "$DEB_DIR"
version="${{ github.ref_name }}"
gh release upload "$version" "$DEB_NAME" "$SUM"