Skip to content

Commit 7a1e6aa

Browse files
committed
hot fix, artifact id mismatch
1 parent 4ea6539 commit 7a1e6aa

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish_jar.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jobs:
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:

create_bundle.sh

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ fi
1010
# I can't publish via API, but I can create a bundle for manual upload.
1111

1212
VERSION=$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

0 commit comments

Comments
 (0)