Skip to content

Commit

Permalink
Handled review comments #2163
Browse files Browse the repository at this point in the history
  • Loading branch information
sulhicader committed Jan 31, 2024
1 parent 72a07bd commit 41bf0f7
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/publish-university.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ env:
VERSION: "1.0.1"

jobs:
airgapped:
create-bundle:
name: Create Wave Bundle
runs-on: ubuntu-latest

outputs:
build-version: ${{ env.VERSION }}

steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -57,13 +60,14 @@ jobs:
name: wave-bundle-helm
path: university/helm/

retrieve-metadata:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
build-and-publish:
needs: create-bundle
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout

- name: Get App Version
id: get-build-version
run: |
echo "VERSION=${{ env.VERSION }}" >> "$GITHUB_OUTPUT"
uses: ./.github/workflows/wave-bundle-docker-build-publish.yaml
with:
build-version: ${{ needs.create-bundle.outputs.build-version }}
bundle-artifact: wave-bundle
wave-app-name: university

0 comments on commit 41bf0f7

Please sign in to comment.