Skip to content

Commit

Permalink
Merge pull request #132 from sclorg/fix_typo_in_config
Browse files Browse the repository at this point in the history
Fix typo in reading betka_configuration file.
  • Loading branch information
phracek authored Nov 18, 2024
2 parents b19724d + 43cbd9c commit a1a2f3c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
dockerfiles: ./Dockerfile
image: betka
tags: latest 1 ${{ github.sha }} 0.9.5
tags: latest 1 ${{ github.sha }} 0.9.6

- name: Push betka image to Quay.io
id: push-to-quay
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM quay.io/fedora/fedora:37

ENV NAME=betka-fedora \
RELEASE=0.9.5 \
RELEASE=0.9.6 \
ARCH=x86_64 \
SUMMARY="Syncs changes from upstream repository to downstream" \
DESCRIPTION="Syncs changes from upstream repository to downstream" \
Expand Down
2 changes: 1 addition & 1 deletion betka/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def create_gitlab_merge_request(
"description": desc_msg,
"target_project_id": self.project_id,
}
if not self.betka_config["use_gitlab_fork"]:
if not self.betka_config["use_gitlab_forks"]:
data["target_branch"] = origin_branch
return self.create_project_mergerequest(data)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_requirements():

setup(
name="betka",
version="0.9.5",
version="0.9.6",
packages=find_packages(exclude=["examples", "tests"]),
url="https://github.com/sclorg/betka",
license="GPLv3+",
Expand Down

0 comments on commit a1a2f3c

Please sign in to comment.