Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kjarosh committed Aug 8, 2024
1 parent 064b9b5 commit 6b04854
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
if: steps.configure.outputs.enabled == 'true'
id: version
run: |
$RELEASE_SCRIPT bump "${{ github.event.inputs.mode }}" | tee -a $GITHUB_OUTPUT
$RELEASE_SCRIPT bump "${{ github.event.inputs.mode }}"
# Ensure newlines at the end of file
shopt -s globstar
Expand All @@ -85,7 +85,7 @@ jobs:
id: commit
run: |
if [[ ${{ steps.configure.outputs.release_channel }} == 'stable' ]]; then
$RELEASE_SCRIPT commit "${{ github.event.inputs.mode }}" | tee -a $GITHUB_OUTPUT
$RELEASE_SCRIPT commit "${{ github.event.inputs.mode }}"
else
# For nightly we do not want to commit those changes,
# save them and then apply when building
Expand All @@ -105,7 +105,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$RELEASE_SCRIPT release "${{ steps.configure.outputs.release_channel }}" | tee -a $GITHUB_OUTPUT
$RELEASE_SCRIPT release "${{ steps.configure.outputs.release_channel }}"
- name: Push release commit
if: steps.configure.outputs.release_channel == 'stable'
Expand Down

0 comments on commit 6b04854

Please sign in to comment.