Browse Source

Add publish options to release workflow (#1994)

github-services/pull/1995/head
Micaiah Martin 3 years ago committed by GitHub
parent
commit
cb0c52fb26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/release.yml

6
.github/workflows/release.yml

@ -13,6 +13,11 @@ on: @@ -13,6 +13,11 @@ on:
- Initial Release
- Redeploy
- Dry Run
fdroid_publish:
description: 'Publish to f-droid store'
required: true
default: true
type: boolean
jobs:
release:
@ -78,6 +83,7 @@ jobs: @@ -78,6 +83,7 @@ jobs:
name: F-Droid Release
runs-on: ubuntu-20.04
needs: release
if: inputs.fdroid_publish
steps:
- name: Checkout repo
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0

Loading…
Cancel
Save