Construction d'un paquet pour PlumePg v0.3.1 par @alhyss #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PlumePg Debian packaging | |
run-name: Construction d'un paquet pour PlumePg v${{ inputs.plume_pg_version }} par @${{ github.actor }} | |
on: | |
workflow_dispatch: | |
inputs: | |
plume_pg_version: | |
description: Numéro de version de PlumePg (ex 0.3.0) | |
required: true | |
type: string | |
env: | |
PKG_NAME: plume-pg | |
EXT_NAME: plume_pg | |
DEB_REV: 0 | |
jobs: | |
build-deb: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v4 | |
- name: Deb building | |
run: | | |
DEB_FILE=$(bash ./admin/debian/build.sh $PKG_NAME $EXT_NAME ${{ inputs.plume_pg_version }} $DEB_REV) | |
echo "Paquet construit : $DEB_FILE" | |
- name: Artifact upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plume-pg-deb | |
path: "*.deb" |