You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2022/03/14 18:18:06 UTC

[isis] branch ISIS-2975 updated: ISIS-2975: experiments (4)

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch ISIS-2975
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/ISIS-2975 by this push:
     new be17fcd  ISIS-2975: experiments (4)
be17fcd is described below

commit be17fcd88e72c87e55a80b5b5c4c80d2c21973b4
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Mon Mar 14 18:17:59 2022 +0000

    ISIS-2975: experiments (4)
---
 .../workflows/ci-build-artifacts-push-maven.yml    | 31 +++++++++++-----------
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/.github/workflows/ci-build-artifacts-push-maven.yml b/.github/workflows/ci-build-artifacts-push-maven.yml
index d9c57b7..0df6717 100644
--- a/.github/workflows/ci-build-artifacts-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-push-maven.yml
@@ -27,23 +27,24 @@ jobs:
       # requires 'secrets' which we don't have yet
       MVN_STAGES: deploy
 
-  - name: Find latest version from search.maven.org
-    uses: sergeysova/jq-action@v2
-    id: version
-    with:
-      cmd: 'curl -k "https://search.maven.org/solrsearch/select?q=g:org.apache.isis.core+AND+a:isis-applib&rows=1&wt=json" | jq -r ".response.docs[0].latestVersion" '
+  steps:
+    - uses: actions/checkout@v3
 
-  - name: Show my version
-    run: 'echo "version ${{ steps.version.outputs.value }}"'
+    - name: Set up JDK 11
+      uses: actions/setup-java@v2
+      with:
+        distribution: 'zulu'
+        java-version: 11
+
+    - name: Find latest version from search.maven.org
+      uses: sergeysova/jq-action@v2
+      id: version
+      with:
+        cmd: 'curl -k "https://search.maven.org/solrsearch/select?q=g:org.apache.isis.core+AND+a:isis-applib&rows=1&wt=json" | jq -r ".response.docs[0].latestVersion" '
+
+    - name: Show my version
+      run: 'echo "version ${{ steps.version.outputs.value }}"'
 
-#    steps:
-#    - uses: actions/checkout@v3
-#
-#    - name: Set up JDK 11
-#      uses: actions/setup-java@v2
-#      with:
-#        distribution: 'zulu'
-#        java-version: 11
 #
 #    - name: Print Maven Version
 #      run: mvn --version