Skip to content

Commit

Permalink
chore: Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Nov 28, 2024
1 parent 3bcbbeb commit b65c4c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 57 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/deploy.yml

This file was deleted.

13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
export TZ="Europe/Berlin"
git checkout -b release/${{ inputs.releaseversion }}
mvn release:prepare release:perform -B -DreleaseVersion=${{ inputs.releaseversion }} -DpushChanges=false -DskipTests=true -DskipITs=true -DlocalCheckout=true -D"arguments=-Dmaven.deploy.skip=true -DskipTests=true -DskipITs=true"
mvn release:prepare release:perform -B -DreleaseVersion=${{ inputs.releaseversion }} -DskipTests=true -DskipITs=true -DlocalCheckout=true -D"arguments=-DskipTests=true -DskipITs=true"
# manually push
git push --tags
git push origin release/${{ inputs.releaseversion }}
Expand All @@ -83,6 +83,17 @@ jobs:
skip-on-empty: true
tag-prefix: 'v'

- name: tag-and-release
id: tag-and-release
uses: avakar/tag-and-release@v1
with:
release_name: ${{ github.event.inputs.releaseversion }}
tag_name: v${{ github.event.inputs.releaseversion }}
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}



- name: Create Pull Request
id: create-pr
Expand Down

0 comments on commit b65c4c8

Please sign in to comment.