Skip to content

Commit

Permalink
Fixes paths + adds a ZIP of the javadoc to the release
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Dec 21, 2023
1 parent 0c0de64 commit 7cc0cff
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,17 @@ jobs:
# Only run on pushed tags (and explicitely ignore scheduled runs)
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') && github.event_name != 'schedule'
steps:
- name: Install dependencies
run: sudo apt-get install -yq zip unzip
- name: Collect artifacts
uses: actions/download-artifact@master
- name: Create javadoc site ZIP archive
run: |
zip -qr javadoc.zip javadoc
- name: Release emoflon-ilp
uses: softprops/action-gh-release@v1
with:
files: |
org.emoflon.ilp.updatesite/target/org.emoflon.ilp.updatesite-*.zip
org.emoflon.ilp.updatesite/target/repository/plugins/org.emoflon.ilp*.jar
org.emoflon.ilp.updatesite/org.emoflon.ilp.updatesite-*.zip
org.emoflon.ilp/org.emoflon.ilp*.jar
javadoc.zip

0 comments on commit 7cc0cff

Please sign in to comment.