Skip to content

Commit

Permalink
fix typo in release.yaml (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Bueno <[email protected]>
  • Loading branch information
tlbueno authored Oct 31, 2024
1 parent 4fa669a commit fd9e941
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: Build and Push Container Image
on:
push:
tags:
- 'release/*.*.*'
- 'releases/*.*.*'
branches:
- 'release/*.*.*'
- 'releases/*.*.*'
workflow_dispatch:
inputs:
manual_branch:
description: "Specify a branch or tag (e.g., release/0.1.0)"
description: "Specify a branch or tag (e.g., releases/0.1.0)"
required: false
default: ""

Expand All @@ -35,7 +35,7 @@ jobs:
else
REF="${GITHUB_REF_NAME}"
fi
VERSION="${REF#release/}"
VERSION="${REF#releases/}"
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: Build container image
Expand Down

0 comments on commit fd9e941

Please sign in to comment.