diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 68f8d9a..40e4358 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -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) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31f3944..76605d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 != '' @@ -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 }}