AHovorukha has triggered a Deploy Workflow! π #2
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: 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 }} |