diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 520b19485..dbc16c619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -135,3 +135,24 @@ jobs: asset_path: ${{ github.workspace }}/release/hassos_${{ matrix.board.output }}-${{ needs.validate_release.outputs.version }}.vmdk.gz asset_name: hassos_${{ matrix.board.output }}-${{ needs.validate_release.outputs.version }}.vmdk.gz asset_content_type: application/gzip + + bump_version: + name: Bump dev version to ${{ needs.validate_release.outputs.version }} + needs: [ build, validate_release ] + runs-on: [ "ubuntu-20.04" ] + + steps: + - name: Initialize git + uses: home-assistant/actions/helpers/git-init@master + with: + name: ${{ secrets.GIT_NAME }} + email: ${{ secrets.GIT_EMAIL }} + token: ${{ secrets.GIT_TOKEN }} + + - name: Bump Home Assistant OS dev version + uses: home-assistant/actions/helpers/version-push@master + with: + key: "hassos[]" + key-description: "Home Assistant OS" + version: ${{ needs.validate_release.outputs.version }} + channel: "dev"