Delete deb.yml
This commit is contained in:
parent
d496564f0d
commit
21f3ae45d3
38
.github/workflows/deb.yml
vendored
38
.github/workflows/deb.yml
vendored
@ -1,38 +0,0 @@
|
|||||||
# deb.yml
|
|
||||||
# Reusable workflow that builds the Linux Debian package.
|
|
||||||
---
|
|
||||||
name: deb
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
version:
|
|
||||||
type: string
|
|
||||||
description: 'Version number'
|
|
||||||
required: true
|
|
||||||
|
|
||||||
env:
|
|
||||||
FILE_NAME: "Libation.${{ inputs.version }}-linux-chardonnay"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_deb:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Download Artifact
|
|
||||||
uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: "${{ env.FILE_NAME }}.tar.gz"
|
|
||||||
|
|
||||||
- name: Build .deb
|
|
||||||
id: deb
|
|
||||||
run: |
|
|
||||||
./Scripts/targz2deb.sh "${{ env.FILE_NAME }}.tar.gz" ${{ inputs.version }}
|
|
||||||
|
|
||||||
- name: Publish .deb
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: ${{ env.FILE_NAME }}.deb
|
|
||||||
path: ${{ env.FILE_NAME }}.deb
|
|
||||||
if-no-files-found: error
|
|
||||||
Loading…
x
Reference in New Issue
Block a user