Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
fwilhe committed Dec 19, 2023
1 parent c923658 commit 3409fdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ It should be run if a new release is desired.
The workflow dispatch needs a parameter `component` which specifies which version component should be increased.
This is either `minor` (the default) or `major`.
`major` should be picked in cases where the new version has breaking changes (for example between the `build` script and the container image).

## `differential-shellcheck.yml`

Finds new warnings using [shellcheck](https://www.shellcheck.net)
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
- minor
- major
jobs:

release-new-version:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event.inputs.component != ''
Expand All @@ -19,7 +18,7 @@ jobs:
with:
fetch-depth: 0
- run: echo Version Component to Increase is ${{ github.event.inputs.component }}
- name: Get Version Number
- name: get next version number
run: .github/workflows/bump.py ${{ github.event.inputs.component }}
id: bump
- run: echo New version number ${{ steps.bump.outputs.newVersion }}
Expand Down

0 comments on commit 3409fdd

Please sign in to comment.