File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7373 SIGNING_PASSWORD : ${{ secrets.SIGNING_PASSWORD }}
7474 VERSION : ${{ env.RELEASE_VERSION }}
7575
76- # You want to use the 'ciphercraft-<version>.jar' for your uses
7776 - name : Release the JAR file
7877 uses : softprops/action-gh-release@v2
7978 with :
Original file line number Diff line number Diff line change 1010# I can't publish via API, but I can create a bundle for manual upload.
1111
1212VERSION=$1
13- DOMAIN=io/github/andrewquijano
14- PROJECT=drone_collision_avoidance
13+ GROUP_ID=io/github/andrewquijano
14+ # This needs to match name in settings.gradle
15+ PROJECT=drone-collision-avoidance
1516
1617# Use this script as a stop gap for manual uploading
17- mkdir -p $DOMAIN /$PROJECT /$VERSION
18- cp build/libs/* $DOMAIN /$PROJECT /$VERSION /
19- cp build/publications/mavenJava/pom-default.xml $DOMAIN /$PROJECT /$VERSION /$PROJECT -$VERSION .pom
20- cp build/publications/mavenJava/pom-default.xml.asc $DOMAIN /$PROJECT /$VERSION /$PROJECT -$VERSION .pom.asc
18+ mkdir -p $GROUP_ID /$PROJECT /$VERSION
19+ cp build/libs/* $GROUP_ID /$PROJECT /$VERSION /
20+ cp build/publications/mavenJava/pom-default.xml $GROUP_ID /$PROJECT /$VERSION /$PROJECT -$VERSION .pom
21+ cp build/publications/mavenJava/pom-default.xml.asc $GROUP_ID /$PROJECT /$VERSION /$PROJECT -$VERSION .pom.asc
2122
2223# Loop through all files in the specified directory
23- for file in $DOMAIN /$PROJECT /$VERSION /* ; do
24+ for file in $GROUP_ID /$PROJECT /$VERSION /* ; do
2425 # Print the file being checked
2526 echo " Processing file: $file "
2627
You can’t perform that action at this time.
0 commit comments