generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,42 @@ | ||
name: release | ||
|
||
# Run workflow on commits to the `main` branch | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- 'main' | ||
workflow_dispatch: | ||
inputs: | ||
releaseVersion: | ||
description: "Default version to use when preparing a release." | ||
required: true | ||
default: "2.0.0" | ||
developmentVersion: | ||
description: "Default version to use for new local working copy." | ||
required: true | ||
default: "2.0.1-SNAPSHOT" | ||
|
||
jobs: | ||
if_merged: | ||
if: github.event.pull_request.merged == true | ||
release-maven: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
MVN_ARTIFACT_ID: ${{ steps.maven-release-step.outputs.MVN_ARTIFACT_ID }} | ||
ARTIFACT_NAME: ${{ steps.maven-release-step.outputs.artifact-name }} | ||
env: | ||
TZ: Europe/Berlin # timezone | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ssh-key: ${{ secrets.SECRET_KEY }} | ||
|
||
- name: Install Java and Maven | ||
uses: actions/setup-java@v3 | ||
- id: maven-release-step | ||
uses: it-at-m/.github/.github/actions/action-maven-release@main | ||
with: | ||
app-path: "" | ||
releaseVersion: "${{ github.event.inputs.releaseVersion }}" | ||
developmentVersion: "${{ github.event.inputs.developmentVersion }}" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Set up Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Clean Maven Project Version | ||
id: set-version | ||
run: | | ||
current_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | ||
echo "Current version: $current_version" | ||
new_version=$(echo $current_version | sed 's/-SNAPSHOT//') | ||
echo "New version: $new_version" | ||
mvn -B versions:set -DnewVersion=$new_version | ||
mvn -B versions:set -DnewVersion=$new_version -DprocessAllModules | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
git add pom.xml | ||
git add **/pom.xml | ||
git commit -m "Bump main version to $new_version" | ||
git push | ||
echo "::set-output name=new_version::$new_version" | ||
- name: Build with Maven | ||
run: mvn -B verify "-Dspring-boot.run.jvmArguments=-Dfile.encoding=UTF-8" -DskipTests=true | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_KEY }} | ||
|
||
- name: Build and push app | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: itatm/dave-frontend:${{ steps.set-version.outputs.new_version }},itatm/dave-frontend:latest | ||
|
||
- name: Docker Hub Description | ||
uses: peter-evans/dockerhub-description@v3 | ||
create-github-release: | ||
needs: release-maven | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: it-at-m/.github/.github/actions/action-create-github-release@main | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_KEY }} | ||
repository: itatm/dave-frontend | ||
short-description: Das DAVe-Datenportal bietet einen Zugriff auf die Zählungen und ermöglicht Datenanalyse. | ||
|
||
# github-release: | ||
# needs: if_merged | ||
# name: Create Release | ||
# # if: github.event.inputs.snapshot-build == 'n' | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v3 | ||
|
||
# - name: Create tag | ||
# uses: actions/github-script@v6 | ||
# with: | ||
# script: | | ||
# github.rest.git.createRef({ | ||
# owner: context.repo.owner, | ||
# repo: context.repo.repo, | ||
# ref: 'refs/tags/${{ github.event.inputs.release-tag }}', | ||
# sha: context.sha | ||
# }) | ||
# - name: Create GitHub Release | ||
# id: create_release | ||
# uses: softprops/action-gh-release@v1 | ||
# with: | ||
# tag_name: ${{ github.event.inputs.release-tag }} | ||
# draft: false | ||
# prerelease: false | ||
# generate_release_notes: true | ||
# - name: Update Docker Hub Description | ||
# uses: peter-evans/dockerhub-description@v3 | ||
# with: | ||
# username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
# password: ${{ secrets.DOCKERHUB_KEY }} | ||
# repository: itatm/dave-frontend | ||
# readme-filepath: ./IMAGE_README.md | ||
# short-description: ${{ github.event.repository.description }} | ||
artifact-name: ${{ needs.release-maven.outputs.ARTIFACT_NAME }} | ||
tag-name: ${{ needs.release-maven.outputs.MVN_ARTIFACT_ID }}-${{ github.event.inputs.releaseVersion }} | ||
artifact-path: "./target/*.jar" |