create-tag: Don't check week for manual triggers
When a release is manually triggered we want to ignore whether it is an odd or even week but allow the release in any case.
This commit is contained in:
parent
64be96017f
commit
53cb872aca
1 changed files with 1 additions and 1 deletions
2
.github/workflows/create-tag.yml
vendored
2
.github/workflows/create-tag.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
|
||||
- name: Upstream tag
|
||||
uses: osbuild/release-action@create-tag
|
||||
if: ${{ env.WEEK == 'odd' }}
|
||||
if: ${{ env.WEEK == 'odd' || github.event_name != 'schedule' }}
|
||||
with:
|
||||
token: "${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}"
|
||||
username: "imagebuilder-bot"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue