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 0fc1f1994 fix for the release candidate GitHub workflow
(CONNECTORS-1754)
0fc1f1994 is described below
commit 0fc1f19940cd3f184532213b9f80b12d4bf0243f
Author: Piergiorgio Lucidi <[email protected]>
AuthorDate: Tue Mar 26 11:23:27 2024 +0100
fix for the release candidate GitHub workflow (CONNECTORS-1754)
---
.github/workflows/create-release-candidate.yml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/create-release-candidate.yml
b/.github/workflows/create-release-candidate.yml
index fc78badc0..6004b386f 100644
--- a/.github/workflows/create-release-candidate.yml
+++ b/.github/workflows/create-release-candidate.yml
@@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Init Release Candidate workflow
- run: echo "Starting Apache ManifoldCF workflow for building ${{
github.events.input.releasecandidatetag }}"
+ run: echo "Starting Apache ManifoldCF workflow for building ${{
github.event.inputs.releasecandidatetag }}"
- uses: actions/[email protected]
- name: Set up OpenJDK 11 Temurin x64
uses: actions/[email protected]
@@ -63,7 +63,7 @@ jobs:
echo "version=${branchVersion}" >> $GITHUB_OUTPUT
- name: Create new release candidate branch
- run: git branch ${{ steps.branchVersion.outputs.version }}${{
github.events.input.releasecandidatetag }}
+ run: git branch ${{ steps.branchVersion.outputs.version }}${{
github.event.inputs.releasecandidatetag }}
- name: Update all the Maven modules with the new version
run: mvn versions:set -DnewVersion=${{
steps.mavenProjectVersion.outputs.version }} -DremoveSnapshot
-DgenerateBackupPoms=false
@@ -93,36 +93,36 @@ jobs:
run: |
find . -name 'pom.xml' -exec git add {} \;
git add CHANGES.txt build.xml
- git commit -am "${{ steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }} created"
+ git commit -am "${{ steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }} created"
git push
- name: Upload artifacts - Binary - zip format
uses: actions/[email protected]
with:
- name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }}-bin.zip
+ name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }}-bin.zip
path: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-bin.zip
- name: Upload artifacts - Lib - tar.gz format
uses: actions/[email protected]
with:
- name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }}-lib.tar.gz
+ name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }}-lib.tar.gz
path: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-lib.tar.gz
- name: Upload artifacts - Lib - zip format
uses: actions/[email protected]
with:
- name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }}-lib.zip
+ name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }}-lib.zip
path: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-lib.zip
- name: Upload artifacts - Source code - tar.gz format
uses: actions/[email protected]
with:
- name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }}-src.tar.gz
+ name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }}-src.tar.gz
path: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-src-tar.gz
- name: Upload artifacts - Source code - zip format
uses: actions/[email protected]
with:
- name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.events.input.releasecandidatetag }}-src.zip
+ name: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-${{
github.event.inputs.releasecandidatetag }}-src.zip
path: apache-manifoldcf-${{
steps.mavenProjectVersion.outputs.version }}-src-zip