Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Debian Deliver Package to Artifactory Pipeline",
"description": "This pipeline will take a specific Debian package and deliver it to Artifactory on each GitHub Release.",
"iconName": "octicon package",
"categories": [
"Artifactory",
"Debian"
],
"filePatterns": [
"**/DEBIAN/control"
]
}
25 changes: 25 additions & 0 deletions workflow-templates/debian-package-deliver-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# For official documentation on this workflow, please refer to the link below.
# https://github.com/brandwatch/bw-workflow-actions/blob/dev/workflows/debian/debian-package-deliver.yaml.md

name: CI Pipeline - Build and Deliver Debian Package

permissions:
checks: write
contents: write
packages: read

on:
release:
types: [ released ] # can be `published` to run on pre-release instead of production releases

jobs:
deploy-debian-pipeline:
name: "Build and Deliver Debian Package"
uses: brandwatch/bw-workflow-actions/.github/workflows/debian-build-deliver-package.yaml@dev
with:
package-version: ${{ github.ref_name }}
package-folder: # Location of the folder which contains the DEBIAN subfolder
deb-distributions:
deb-components:
deb-architectures:
secrets: inherit