Skip to content

Commit

Permalink
Add ABS ref as manual input to build_installer workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
mikiher committed Jul 7, 2024
1 parent 787105a commit 139f9ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
tag:
description: 'Tag to build'
required: true
abs_ref:
description: 'Audiobookshelf ref to use'
required: false

jobs:
build-windows:
Expand Down Expand Up @@ -42,7 +45,7 @@ jobs:
- uses: actions/checkout@v3
with:
repository: advplyr/audiobookshelf
ref: ${{ steps.get_latest_release.outputs.result }}
ref: ${{ github.event_name == 'repository_dispatch' && steps.get_latest_release.outputs.result || inputs.abs_ref }}
path: ./audiobookshelf

- name: Install dependencies
Expand Down

0 comments on commit 139f9ae

Please sign in to comment.