Skip to content
This repository was archived by the owner on May 16, 2022. It is now read-only.

Commit 2a0f013

Browse files
authored
Merge pull request #15 from kosciCZ/0.1.0-release
0.1.0 release
2 parents 4a9d23f + 395f5ba commit 2a0f013

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# 0.1.0
3+
4+
* Initial release.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN mkdir -p ${HOME} && \
2525
USER 1001
2626

2727
RUN pip3 install --user release-bot && \
28-
pip install --user wheel && \
28+
pip install --user wheel PyYaml && \
2929
chgrp -R 0 /opt/app-root && \
3030
chmod -R g=u /opt/app-root
3131

release-conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 0.0.1
1+
version: 0.1.0

release_bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ def main():
533533
# if found, make a new release on github
534534
# this has to be done using older github api because v4 doesn't support this yet
535535
if found:
536-
CONFIGURATION['logger'].error(message=(f"found version: {new_release['version']}, "
537-
f"commit id: {new_release['commitish']}"))
536+
CONFIGURATION['logger'].error((f"found version: {new_release['version']}, "
537+
f"commit id: {new_release['commitish']}"))
538538
payload = {"tag_name": new_release['version'],
539539
"target_commitish": new_release['commitish'],
540540
"name": new_release['version'],

0 commit comments

Comments
 (0)