packaging: Added workflow directory to each step on #2163 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wave Bundle | ||
on: | ||
push: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VERSION: "0.0.1" | ||
TAG: "v0.0.1" | ||
jobs: | ||
bundle: | ||
name: Create Wave Bundle | ||
uses: ./.github/workflows/wave-bundle.yaml | ||
with: | ||
build-version: ${{ env.VERSION }} | ||
Check failure on line 16 in .github/workflows/wave.yaml GitHub Actions / Wave BundleInvalid workflow file
|
||
publish: | ||
needs: bundle | ||
name: Build and Publish | ||
uses: ./.github/workflows/wave-publish.yaml | ||
helm-publish: | ||
needs: bundle | ||
name: Build and Publish Helm Chart | ||
uses: ./.github/workflows/helm-release.yaml |