Unverified Commit 2aa8591b authored by Allison Suarez Miranda's avatar Allison Suarez Miranda Committed by GitHub

fix: error in automated release (#866)

* added monthly release action
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* changed python version to correct one
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* noticed weird behavior of this command with no quatations so added them
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* left a comma in by mistake which made it so it was expecting an extra argument
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* chaged cron to test
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>
parent 0995eeb6
......@@ -2,7 +2,7 @@ name: Monthly Release
on:
schedule:
- cron: 0 9 14 * *
- cron: 0 13 14 * *
jobs:
release:
......@@ -17,6 +17,6 @@ jobs:
- name: Semantic Release
run: |
pip install python-semantic-release
git config user.name github-actions
git config user.email github-actions@github.com
git config user.name "github-actions"
git config user.email "github-actions@github.com"
semantic-release publish
......@@ -28,7 +28,7 @@ strict_optional = True
warn_no_return = True
[semantic_release]
version_variable = "amundsenfrontendlibrary/setup.py:__version__",
version_variable = "./setup.py:__version__"
branch = "master"
upload_to_pypi = true
upload_to_release = true
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment