Skip to content

Commit

Permalink
draft release attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks authored Feb 29, 2024
1 parent dc98d1e commit 14907bb
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/do-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,31 @@ on:
type: string

jobs:
do-release-workflow:
build:
uses: ./.github/workflows/base.yml
with:
gst_repo: ${{ github.event.inputs.gst_repo }}
gst_version: ${{ github.event.inputs.gst_version }}
gst_plugin: ${{ github.event.inputs.gst_plugin }}

release:
name: Prepeare release
needs: build
runs-on: ubuntu-latest
steps:
- name: Download everything we built
uses: actions/download-artifact@v4
with:
path: goodies
merge-multiple: true

- run: ls -R goodies

- name: Draft the release
uses: softprops/action-gh-release@v1
with:
files: goodies/*
draft: true
body: 'gst-plugins-rs plugin ${{ github.event.inputs.gst_plugin }} version ${{ github.event.inputs.gst_version }}'


0 comments on commit 14907bb

Please sign in to comment.