Skip to content

Commit

Permalink
Issue #12720: Keep workflows inputs version consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyanK7 authored and romani committed Feb 25, 2023
1 parent 3ec3014 commit 5ab8c46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/copy-site-to-sourceforge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: "R: Copy Site to SourceForge"
on:
workflow_dispatch:
inputs:
release-version:
version:
description: 'Release Version without (-SNAPSHOT)'
required: true

Expand All @@ -16,7 +16,7 @@ concurrency:

jobs:
copy-site:
name: Copy site to sourceforge for ${{ github.event.inputs.release-version }}
name: Copy site to sourceforge for ${{ inputs.version }}
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
Expand All @@ -38,4 +38,4 @@ jobs:
env:
SF_USER: ${{ secrets.SF_USER }}
run: |
./.ci/copy-site-to-sourceforge.sh ${{ github.event.inputs.release-version }}
./.ci/copy-site-to-sourceforge.sh ${{ inputs.version }}

0 comments on commit 5ab8c46

Please sign in to comment.