Merging ENT updates back into OSS (#2309)

pull/2307/head^2
Michele Degges 4 years ago committed by GitHub
parent ed3014ead5
commit 047b9bea05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 }}

@ -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.

@ -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 = ""

Loading…
Cancel
Save