Skip to content

Commit

Permalink
IBX-4145: Hotfix for missing "v"
Browse files Browse the repository at this point in the history
  • Loading branch information
ibexa-yuna committed Nov 7, 2022
1 parent ee8edb6 commit 4cf4233
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
echo "BUILD_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo "BUILD_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
- name: Docker Login
uses: docker/#-action@v1.8.0
uses: docker/#-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ outputs:
description: "Output from the action"
runs:
using: "docker"
image: "docker://ghcr.io/ibexa/version-logic-action:v1.3.0"
image: "docker://ghcr.io/ibexa/version-logic-action:v1.3.1"
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main():
else:
previous_tag = semver.format_version(major, minor, patch - 1)

set_output("previousTag", previous_tag)
set_output("previousTag", f"v{previous_tag}")


if __name__ == "__main__":
Expand Down

0 comments on commit 4cf4233

Please # to comment.