-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attached new flows to publish-university
- Loading branch information
1 parent
51a91b6
commit cdc11bc
Showing
6 changed files
with
55 additions
and
62 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,15 @@ | ||
name: Publish Wave University | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Release Version' | ||
required: true | ||
push: | ||
|
||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VERSION: "${{ github.event.inputs.version }}" | ||
|
||
jobs: | ||
publish: | ||
name: Publish Wave University | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.GIT_TOKEN }} | ||
|
||
- name: Build university | ||
run: make publish-university | ||
|
||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
packages_dir: university/dist | ||
password: ${{ secrets.PYPI_UNIVERSITY_TOKEN }} | ||
bundle_generator: | ||
name: Bundle and Publish | ||
runs-on: ubuntu-20.04 | ||
uses: ./.github/workflows/wave-university.yaml | ||
with: | ||
build-version: 1.0.0 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Wave Bundle | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
build-version: | ||
type: string | ||
description: The version of the application/image to be pushed | ||
required: true | ||
|
||
jobs: | ||
bundle: | ||
name: Create Wave Bundle | ||
uses: ./.github/workflows/wave-bundle-university.yaml | ||
with: | ||
build-version: ${{ inputs.build-version }} | ||
|
||
publish: | ||
needs: bundle | ||
name: Build and Publish | ||
uses: ./.github/workflows/wave-publish-university.yaml | ||
with: | ||
build-version: ${{ inputs.build-version }} | ||
|
||
helm-publish: | ||
needs: bundle | ||
name: Build and Publish Helm Chart | ||
uses: ./.github/workflows/helm-release-university.yaml | ||
with: | ||
build-version: ${{ inputs.build-version }} |
This file was deleted.
Oops, something went wrong.