Skip to content

Commit

Permalink
Merge pull request #2 from prominic/develop
Browse files Browse the repository at this point in the history
workflow fix
  • Loading branch information
dpastov authored Oct 23, 2023
2 parents 9486d64 + 7d039c4 commit 1d9f69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
- name: 3. Get version of GJA
run: echo "gja_version=$(grep -A 2 '<artifactId>gja</artifactId>' pom.xml | grep version | cut -d'>' -f2 | cut -d'<' -f1)" >> $GITHUB_ENV
- name: 5. Download Notes.jar and GJA and add them to local maven repository
- name: 4. Download Notes.jar and add it to local maven repository
run: |
wget 'https://domino-1.dmytro.cloud/Files.nsf/all/file/$FILE/Notes.jar' -O Notes.jar -q --show-progress
echo "adding Notes.jar to local maven storage"
mvn install:install-file -Dfile="Notes.jar" -DgroupId=lotus.notes -DartifactId=notes -Dversion=10.0 -Dpackaging=jar
- name: 5. Download GJA-${{ env.gja_version }}.jar and add it to local maven repository
- name: 5. Download GJA-${{ env.gja_version }}.jar and add it to local maven repository
run: |
wget 'https://github.com/DominoGenesis/JavaServerAddinGenesis/releases/download/v${{ env.gja_version }}/gja-${{ env.gja_version }}.jar' -O gja-${{ env.gja_version }}.jar -q --show-progress
echo "adding gja-${{ env.gja_version }}.jar to local maven storage"
Expand Down

0 comments on commit 1d9f69c

Please sign in to comment.