Skip to content

Commit b24025a

Browse files
committed
Make sure we actually print the store names
1 parent 60af0e2 commit b24025a

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/distribute-maven-stg.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,8 @@ jobs:
206206
- name: Get store ID and publish
207207
working-directory: ./stg
208208
run: |
209-
echo "Listing stores, looking for package: $INPUTS_DISTRIBUTION_PACKAGE"
210-
mvn njord:list
211-
STORE_ID=$(mvn njord:list -q | grep -oP '$INPUTS_DISTRIBUTION_PACKAGE-\d+' | tail -1)
209+
mvn njord:list | grep -oP '$INPUTS_DISTRIBUTION_PACKAGE-\d+' | tail -1
210+
STORE_ID=$(mvn njord:list | grep -oP '$INPUTS_DISTRIBUTION_PACKAGE-\d+' | tail -1)
212211
echo "Publishing store: $STORE_ID"
213212
mvn njord:validate -Dnjord.store=$STORE_ID -X
214213
mvn njord:publish -Dnjord.store=$STORE_ID -Dnjord.target=rao3 -X

0 commit comments

Comments
 (0)