1
0
Fork 0

fix(build): copy readme into packages (#114)

This commit is contained in:
Sean Sube 2023-02-11 21:51:49 -06:00
parent baa7f912a1
commit d5bf2b0338
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 4 additions and 0 deletions

View File

@ -153,6 +153,7 @@ package-api-twine:
only: only:
- tags - tags
script: script:
- cp -v README.md api/README.md
- cd api - cd api
- pip install build twine - pip install build twine
- python -m build - python -m build
@ -170,6 +171,7 @@ package-api-twine-dry:
except: except:
- tags - tags
script: script:
- cp -v README.md api/README.md
- cd api - cd api
- pip install build twine - pip install build twine
- python -m build - python -m build
@ -184,6 +186,7 @@ package-gui-npm:
only: only:
- tags - tags
script: script:
- cp -v README.md gui/README.md
- cd gui - cd gui
- npm publish - npm publish
artifacts: artifacts:
@ -198,6 +201,7 @@ package-gui-npm-dry:
except: except:
- tags - tags
script: script:
- cp -v README.md gui/README.md
- cd gui - cd gui
- npm pack - npm pack