Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug appVersion in chart #492

Merged
merged 3 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pullrequest-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ on:

jobs:
verify-devcontainer:
uses: project-origin/.github/.github/workflows/reusable-verify-devcontainer.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-verify-devcontainer.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a

verify-code:
uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a

verify-renovate-config:
uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a

verify-chart:
uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a

verify-container-build:
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
with:
imagename: ghcr.io/project-origin/registry-server
version: test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-published.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:

jobs:
define-version:
uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a

publish-container:
needs:
- define-version
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
with:
imagename: ghcr.io/project-origin/registry-server
version: ${{ needs.define-version.outputs.version }}
Expand All @@ -23,7 +23,7 @@ jobs:
needs:
- define-version
- publish-container
uses: project-origin/.github/.github/workflows/reusable-publish-chart.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-publish-chart.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
with:
version: ${{ needs.define-version.outputs.version }}
chart_folder: chart
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ on:

jobs:
analyse:
uses: project-origin/.github/.github/workflows/reusable-sonarcloud.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
uses: project-origin/.github/.github/workflows/reusable-sonarcloud.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}