-
Notifications
You must be signed in to change notification settings - Fork 382
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
1 parent
2a99deb
commit f255cba
Showing
2 changed files
with
5 additions
and
9 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 |
---|---|---|
|
@@ -4,7 +4,8 @@ name: "Release Master" | |
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "master" ] | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
release: | ||
|
@@ -13,16 +14,12 @@ jobs: | |
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Java and Maven | ||
uses: actions/[email protected] | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: maven | ||
server-id: github | ||
distribution: 'adopt' | ||
|
||
- name: Adding ssh key | ||
uses: webfactory/[email protected] | ||
|
@@ -41,7 +38,7 @@ jobs: | |
gpg_passphrase: ${{ secrets.gpg_passphrase }} | ||
nexus_username: ${{ secrets.OSSRH_USERNAME }} | ||
nexus_password: ${{ secrets.OSSRH_TOKEN }} | ||
maven_goals_phases: clean -e -X -B release:prepare release:perform -Darguments="-DskipTests" -P ossrh | ||
maven_goals_phases: clean -B release:prepare release:perform -Darguments="-DskipTests" -P ossrh | ||
|
||
- name: Publish to GitHub Packages | ||
run: mvn --batch-mode deploy -P github | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
<artifactId>nfe</artifactId> | ||
<version>4.0.69-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>nfe</name> | ||
<description>Biblioteca de comunicacao de nota fiscal eletronica brasileira</description> | ||
<url>https://github.com/wmixvideo/nfe</url> | ||
|
@@ -44,7 +43,7 @@ | |
<url>[email protected]:wmixvideo/nfe.git</url> | ||
<connection>scm:git:[email protected]:wmixvideo/nfe.git</connection> | ||
<developerConnection>scm:git:[email protected]:wmixvideo/nfe.git</developerConnection> | ||
<tag>v4.0.65</tag> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<properties> | ||
|