Skip to content

Commit

Permalink
GitAction deploy fourteenth fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Finevman committed Jul 13, 2023
1 parent 0960f4a commit 7a02d2e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
push:
tags:
- '*'
branches:
- master

jobs:

Expand All @@ -29,12 +27,12 @@ jobs:
cache: 'maven'

- name: Create the (jar) packages and libraries
run: mvn clean package -DskipTests -Pproduction
run: mvn install -DskipTests -Pproduction

- name: Get version
id: tagName
run: |
VERSION="alpha"
VERSION="${{github.ref_name}}"
echo "tag=$VERSION" >> $GITHUB_OUTPUT
- name: Build Zip file
Expand Down

1 comment on commit 7a02d2e

@Finevman
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The GitAction successfully creates a release based on the new tag created on Github.

Please sign in to comment.