Skip to content

Commit

Permalink
CI: added parameter to choose repo
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Mar 27, 2024
1 parent 754ad92 commit 662707a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Build and release
on:
workflow_dispatch:
inputs:
repo:
description: 'Reva repository to be used'
required: true
default: 'cs3org'
branch:
description: 'Reva branch to be used'
description: 'Branch to be built'
required: true
default: 'master'
go-version:
Expand Down Expand Up @@ -48,7 +52,7 @@ jobs:
- name: Checkout reva repository
uses: actions/checkout@v3
with:
repository: cs3org/reva
repository: ${{ inputs.repo }}/reva
path: reva
ref: ${{ inputs.branch }}
- name: Copy necessary files for building the RPMs
Expand Down

0 comments on commit 662707a

Please sign in to comment.