Skip to content

Use 4.0.0-SNAPSHOT version in Spring schemas #11

Use 4.0.0-SNAPSHOT version in Spring schemas

Use 4.0.0-SNAPSHOT version in Spring schemas #11

Workflow file for this run

# ---------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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-20.04
if: github.ref == 'refs/heads/main' && github.repository == 'citrusframework/citrus'
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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