-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0629da
commit a3b371f
Showing
4 changed files
with
38 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Pull Request | ||
|
||
> Tracked in JIRA by [YAF-XXX](https://yiluts.atlassian.net/browse/YAF-XXX) | ||
## Scope of the PR | ||
|
||
Describe the scope of this pull request. | ||
|
||
## Considerations / Implementation Details | ||
|
||
Describe any considerations or implementation details. |
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,26 @@ | ||
name: Deploy Workflow | ||
run-name: ${{ github.actor }} has triggered a Deploy Workflow! 🚀 | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
package-and-publish: | ||
name: Package & Publush | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Toolchain | ||
run: ./scripts/install_toolchain.sh | ||
|
||
- name: Run linter | ||
run: helm lint yilu-common --set image.tag="test" --set serviceName="ci-test" | ||
|
||
- name: Publish | ||
run: ./scripts/publish_chart.sh | ||
env: | ||
TRAVIS_GITHUB_TOKEN: ${{ secrets.TRAVIS_GITHUB_TOKEN }} |
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 was deleted.
Oops, something went wrong.