Skip to content

Update Citrus JBang dist to version 4.3.3 #10

Update Citrus JBang dist to version 4.3.3

Update Citrus JBang dist to version 4.3.3 #10

Workflow file for this run

# ---------------------------------------------------------------------------
# Copyright the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ---------------------------------------------------------------------------
name: release
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/project.yml'
jobs:
release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository == 'citrusframework/citrus'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Retrieve project metadata
id: metadata
uses: radcortez/project-metadata-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
metadata-file-path: '.github/project.yml'
local-file: true
- name: Prepare Release Environment
run: |
VERSION=v${{ steps.metadata.outputs.current-version }}
echo "Using VERSION=$VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
release_name: ${{ env.VERSION }}
body: |
Citrus release ${{ env.VERSION }}
draft: false
prerelease: false