Browse Source

Merge pull request #54 from Ujinjinjin/ci-fix-2020-11-29

CI fix. Bumped version of UPM preparation tools
pull/57/head
Sebastiano Mandalà GitHub 3 years ago
parent
commit
cb089822bc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .github/workflows/upm-release.yml

+ 4
- 4
.github/workflows/upm-release.yml View File

@@ -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: |


Loading…
Cancel
Save