Skip to content

debian: removed old unknown section #3

debian: removed old unknown section

debian: removed old unknown section #3

Workflow file for this run

name: Trigger On Tag
on:
push:
tags:
- '**'
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name to process'
required: true
type: string
permissions:
contents: write
jobs:
create_release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- id: create_release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
body: Automated release for tag ${{ github.ref_name }}
draft: false
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
run-shared:
uses: ./.github/workflows/build-deb.yaml
secrets: inherit