diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bece503f2c..08f396a114 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,6 +57,17 @@ jobs: echo "::set-output name=product-version::$VERSION" echo "::set-output name=product-minor-version::$MINOR_VERSION" + verify-product-metadata: + needs: product-metadata + runs-on: ubuntu-latest + steps: + - name: 'Checkout directory' + uses: actions/checkout@v3 + - run: | + echo "Product Version - ${{ needs.product-metadata.outputs.product-version }}" + echo "Product Minor Version - ${{ needs.product-metadata.outputs.product-minor-version }}" + echo "Product Edition - ${{ needs.product-metadata.outputs.product-edition }}" + generate-metadata-file: needs: product-metadata runs-on: ubuntu-latest @@ -209,7 +220,8 @@ jobs: with: name: ${{ env.PKG_NAME }}_${{ needs.product-metadata.outputs.product-version }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip path: out/${{ env.PKG_NAME }}_${{ needs.product-metadata.outputs.product-version }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip - - name: Linux Packaging + + - name: Package uses: hashicorp/actions-packaging-linux@v1 with: name: ${{ github.event.repository.name }} diff --git a/internal/ui/VERSION b/internal/ui/VERSION index be006ed2f1..c31cde9f0b 100644 --- a/internal/ui/VERSION +++ b/internal/ui/VERSION @@ -1,4 +1,4 @@ -60005f023302e1ea5b63d1dccb909cd99aeaac0c +dcf24478bdc0475101ece742c355f1bac2352336 # This file determines the version of the UI to embed in the boundary binary. # Update this file by running 'make update-ui-version' from the root of this repo. # Set UI_COMMITISH when running the above target to update to a specific version. diff --git a/version/version_base.go b/version/version_base.go index 1c9464cb1a..e4137c2075 100644 --- a/version/version_base.go +++ b/version/version_base.go @@ -8,7 +8,7 @@ var ( // Whether cgo is enabled or not; set at build time CgoEnabled bool - Version = "0.9.2" + Version = "0.10.0" // VersionPrerelease is also set at compile time, similarly to Version. VersionPrerelease = ""