From 419d434feedcd36d2e0b71ec4dd1875d8346cc2b Mon Sep 17 00:00:00 2001 From: Nick Molcanov <32801560+nck-mlcnv@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:32:46 +0200 Subject: [PATCH] Fix test 8 --- .github/workflows/deploy-test.yml | 2 +- .github/workflows/deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index 7320e432d..9f6568f7f 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -95,7 +95,7 @@ jobs: id: find_ontology_version - name: Fetch Ontologies - run: git checkout gh-pages ontology/ + run: git fetch && git checkout gh-pages ontology/ - run: mkdir -p ontology/${{ steps.find_ontology_version.outputs.ONTOLOGY_VERSION }} - run: cp schema/iguana.owx ontology/${{ steps.find_ontology_version.outputs.ONTOLOGY_VERSION }}/iguana.owx - run: cp schema/iguana.owx ontology/iguana.owx diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7e91fd01e..6210d5cab 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -122,7 +122,7 @@ jobs: id: find_ontology_version - name: Fetch Ontologies - run: git checkout gh-pages ontology/ + run: git fetch && git checkout gh-pages ontology/ - run: mkdir -p ontology/${{ steps.find_ontology_version.outputs.ONTOLOGY_VERSION }} - run: cp schema/iguana.owx ontology/${{ steps.find_ontology_version.outputs.ONTOLOGY_VERSION }}/iguana.owx - run: cp schema/iguana.owx ontology/iguana.owx