This is an automated email from the ASF dual-hosted git repository.
piergiorgio pushed a commit to branch CONNECTORS-1754
in repository https://gitbox.apache.org/repos/asf/manifoldcf.git
The following commit(s) were added to refs/heads/CONNECTORS-1754 by this push:
new a34617de2 Fix for the GitHub workflows (CONNECTORS-1754)
a34617de2 is described below
commit a34617de26506eb82adc31b49f2df45ddca183bc
Author: Piergiorgio Lucidi <[email protected]>
AuthorDate: Tue Jun 18 11:42:31 2024 +0200
Fix for the GitHub workflows (CONNECTORS-1754)
---
.github/workflows/publish-release-candidate-svn.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/publish-release-candidate-svn.yml
b/.github/workflows/publish-release-candidate-svn.yml
index aea91807f..35d984b88 100644
--- a/.github/workflows/publish-release-candidate-svn.yml
+++ b/.github/workflows/publish-release-candidate-svn.yml
@@ -52,15 +52,15 @@ jobs:
- name: Extract Release Candidate revision
id: rcRevision
run: |
- branchExtracted="${{ github.event.inputs.RC_TAG }}"
- set -- branchExtracted
+ rcRevision="${{ github.event.inputs.RC_TAG }}"
+ set -- rcRevision
echo "version=${1##*-}" >> $GITHUB_OUTPUT
- name: Extract branch without release prefix
id: branchWithoutPrefixExtracted
run: |
- branchExtracted="${{ github.event.inputs.RC_TAG }}"
- set -- branchExtracted
+ branchWithoutPrefixExtracted="${{ github.event.inputs.RC_TAG }}"
+ set -- branchWithoutPrefixExtracted
echo "version=${1#*-*}" >> $GITHUB_OUTPUT
- name: Download artifacts from GitHub and Upload artifacts into ASF SVN