diff --git a/.github/workflows/convert-to-heta.yml b/.github/workflows/convert-to-heta.yml index 7c92a8053..79e56ebaf 100644 --- a/.github/workflows/convert-to-heta.yml +++ b/.github/workflows/convert-to-heta.yml @@ -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: | diff --git a/bash/make-description.sh b/bash/make-summary.sh similarity index 100% rename from bash/make-description.sh rename to bash/make-summary.sh diff --git a/static/README.md b/static/README.md index deddcbd4d..e0e70775b 100644 --- a/static/README.md +++ b/static/README.md @@ -3,3 +3,5 @@ To see the results summary go to To see the sources go to repository + +To see the list of Heta files \ No newline at end of file