Skip to content

Commit

Permalink
Put download plugin curl cmd in a single line
Browse files Browse the repository at this point in the history
  • Loading branch information
emilmelnikov committed Jul 3, 2023
1 parent 7383714 commit c355291
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
./Fiji.app/ImageJ-linux64 --headless --update edit-update-site ilastik https://sites.imagej.net/Ilastik/ "webdav:ilastik-ci:${{ secrets.UPDATE_PASS }}" .
- name: Download plugin JAR into ImageJ/Fiji
run: curl \
--silent \
--remote-name https://maven.scijava.org/content/repositories/releases/org/ilastik/ilastik4ij/${{ inputs.version }}/ilastik4ij-${{ inputs.version }}.jar \
--output-dir ./Fiji.app/jars
run: curl --silent --create-dirs --output-dir ./Fiji.app/jars --remote-name https://maven.scijava.org/content/repositories/releases/org/ilastik/ilastik4ij/${{ inputs.version }}/ilastik4ij-${{ inputs.version }}.jar

- name: Update dependencies
run: ./Fiji.app/ImageJ-linux64 --headless --update update

- name: Release to ImageJ update site
run: ./Fiji.app/ImageJ-linux64 --headless --update upload-complete-site --force ilastik

0 comments on commit c355291

Please sign in to comment.