Debian package #112
Workflow file for this run
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: Debian package | ||
# | ||
# Description | ||
# | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
Armbian: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set Variable | ||
run: echo "LOGO=armbian-config" >> $GITHUB_ENV | ||
Debian: | ||
needs: "Armbian" | ||
uses: armbian/scripts/.github/workflows/pack-debian.yml@main | ||
with: | ||
matrix: "all:jammy" | ||
maintainer: "Igor Pecovnik <[email protected]>" | ||
package: "${{ env.LOGO }}" | ||
Check failure on line 26 in .github/workflows/debian.yml GitHub Actions / Debian packageInvalid workflow file
|
||
licence: "GPL 2.0" | ||
homepage: "https://www.armbian.com" | ||
section: "default" | ||
priority: "optional" | ||
depends: "bash, jq, whiptail, sudo, procps, systemd, lsb-release, iproute2" | ||
description: "Configng" | ||
secrets: | ||
GPG_PRIVATE_KEY: ${{ secrets.GPG_KEY1 }} | ||
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE1 }} | ||
Tests: | ||
name: "Execute unit tests" | ||
if: ${{ github.repository_owner == 'Armbian' }} | ||
needs: Debian | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Run unit tests action" | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
event-type: "Unit tests" |