final changes to charts and catalog workflows + first test on release… #15
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: Test Extension workflows | ||
on: | ||
push: | ||
branches: | ||
- 12032-reusable-wf-tests-2 | ||
# schedule: | ||
# - cron: "0 0 * * *" | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: ./ | ||
# TODO: get latest versions from each branch for shell + creators + get version of latest clock and ui-plugin-examples root package.json version | ||
jobs: | ||
# test building helm chart | ||
test-build-extension-charts: | ||
uses: aalves08/dashboard/.github/workflows/build-extension-charts.yml@12032-reusable-wf-tests-2 | ||
permissions: | ||
actions: write | ||
contents: write | ||
deployments: write | ||
pages: write | ||
with: | ||
target_branch: 'gh-pages' | ||
tagged_release: 'clock-0.3.2' | ||
is_test: 'true' | ||
test_repo: 'ui-plugin-examples' | ||
test_branch: 'main' | ||
# test building catalog image | ||
test-build-extension-catalog: | ||
uses: aalves08/dashboard/.github/workflows/build-extension-catalog.yml@12032-reusable-wf-tests-2 | ||
permissions: | ||
actions: write | ||
contents: read | ||
packages: write | ||
with: | ||
registry_target: ghcr.io | ||
registry_user: ${{ github.actor }} | ||
tagged_release: 'ui-plugin-examples-0.1.0' | ||
is_test: 'true' | ||
test_repo: 'ui-plugin-examples' | ||
test_branch: 'main' | ||
secrets: | ||
registry_token: ${{ secrets.GITHUB_TOKEN }} | ||
# test releasing shell package | ||
test-release-shell-pkg: | ||
uses: aalves08/dashboard/.github/workflows/release-shell-pkg.yml@12032-reusable-wf-tests-2 | ||
Check failure on line 48 in .github/workflows/test-extension-workflows.yml GitHub Actions / .github/workflows/test-extension-workflows.ymlInvalid workflow file
|
||
with: | ||
tag: shell-pkg-v3.0.0 | ||
# test releasing creators package | ||
test-release-creators-pkg: | ||
uses: aalves08/dashboard/.github/workflows/release-shell-pkg.yml@12032-reusable-wf-tests-2 | ||
with: | ||
tag: creators-pkg-v1.0.0 |