Skip to content

Commit

Permalink
split action to jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
metelkin committed Jun 11, 2024
1 parent b05846a commit 18c99ca
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/convert-to-heta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,37 @@ jobs:
- name: Create file structure
run: |
bash ./bash/make-description.sh
bash ./bash/make-summary.sh
- name: Upload entire directory as artifact
uses: actions/upload-artifact@v2
with:
name: result-files
path: result/

prepare-heta:
runs-on: ubuntu-latest
needs: convert-to-heta

steps:
- name: Download all artifacts
uses: actions/download-artifact@v2
with:
name: result-files

- name: Create directory
run: |
mkdir -p result/heta
commit-to-result:
runs-on: ubuntu-latest
needs: prepare-heta

steps:
- name: Download all artifacts
uses: actions/download-artifact@v2
with:
name: result-files

- name: copy static
run: |
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions static/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
To see the results summary go to <https://insysbio.github.io/sbml-heta-cases/>

To see the sources go to repository <https://github.com/insysbio/sbml-heta-cases>

To see the list of Heta files <https://insysbio.github.io/sbml-heta-cases/heta/>

0 comments on commit 18c99ca

Please sign in to comment.