Skip to content

Commit

Permalink
rename parent package
Browse files Browse the repository at this point in the history
  • Loading branch information
querwurzel committed Oct 22, 2023
1 parent 21e19e0 commit b523afd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,21 @@ jobs:
- uses: actions/delete-package-versions@v4
if: github.ref == 'refs/heads/main'
with:
package-name: 'com.github.binpastes.binpastes'
package-name: 'com.github.binpastes.app'
package-type: 'maven'
min-versions-to-keep: 10
ignore-versions: '1.0.0-SNAPSHOT'
- uses: actions/delete-package-versions@v4
if: github.ref == 'refs/heads/main'
with:
package-name: 'com.github.binpastes.frontend'
package-type: 'maven'
min-versions-to-keep: 10
ignore-versions: '1.0.0-SNAPSHOT'
- uses: actions/delete-package-versions@v4
if: github.ref == 'refs/heads/main'
with:
package-name: 'com.github.binpastes.backend'
package-type: 'maven'
min-versions-to-keep: 10
ignore-versions: '1.0.0-SNAPSHOT'
2 changes: 1 addition & 1 deletion backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<parent>
<groupId>com.github.binpastes</groupId>
<artifactId>binpastes</artifactId>
<artifactId>app</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Expand Down
2 changes: 1 addition & 1 deletion frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<parent>
<groupId>com.github.binpastes</groupId>
<artifactId>binpastes</artifactId>
<artifactId>app</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<groupId>com.github.binpastes</groupId>
<artifactId>binpastes</artifactId>
<artifactId>app</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>BinPastes</name>
Expand Down

0 comments on commit b523afd

Please sign in to comment.