From bbe2bbd10c8be5aaa020bc0bd724d1de4c5b0513 Mon Sep 17 00:00:00 2001 From: Camille Galladjov Date: Sun, 29 Nov 2020 14:30:13 +0300 Subject: [PATCH] bumped version of upm preparation tools --- .github/workflows/upm-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/upm-release.yml b/.github/workflows/upm-release.yml index f7267cd..ad3a13b 100644 --- a/.github/workflows/upm-release.yml +++ b/.github/workflows/upm-release.yml @@ -37,15 +37,15 @@ jobs: git checkout UPM - name: get preparation tools - run: git clone https://github.com/Ujinjinjin/upm-preparator.git --branch v1.0.10 --single-branch + run: git clone https://github.com/Ujinjinjin/upm-preparator.git --branch v1.0.12 --single-branch - name: bump package version run: | - python3 upm-preparator/version_bumpinator.py "temp/version.json" "temp/package.json" + python3 upm-preparator/version_bumpinator.py --version-file "temp/version.json" --package-file "temp/package.json" --env-file "${GITHUB_ENV}" rm "temp/version.json" - name: change project structure - run: python3 upm-preparator/structure_changinator.py "temp/${PKG_ROOT}" + run: python3 upm-preparator/structure_changinator.py --package-root "temp/${PKG_ROOT}" - name: move package.json & LICENSE & README from temp to root run: | @@ -54,7 +54,7 @@ jobs: mv "temp/README.md" . - name: generate meta files - run: python3 upm-preparator/meta_makinator.py "package.json" + run: python3 upm-preparator/meta_makinator.py --package-file "package.json" - name: remove preparation tools and temp run: |