Skip to content

Commit

Permalink
Apparently that wasn't how you access env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
naddeoa committed Dec 21, 2023
1 parent 015e138 commit c030811
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.4-dev0
current_version = 1.0.4-dev1
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: ["release"]

env:
VERSION: 1.0.4-dev0
VERSION: 1.0.4-dev1

jobs:
release:
Expand All @@ -23,8 +23,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: $VERSION
release_name: Release $VERSION
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
draft: false
prerelease: false
body: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "booty-cli"
version = "1.0.4-dev0"
version = "1.0.4-dev1"
description = ""
authors = ["Anthony Naddeo <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit c030811

Please sign in to comment.