Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aliyaghini authored Sep 9, 2024
1 parent 13876ca commit d66fbf0
Showing 1 changed file with 32 additions and 54 deletions.
86 changes: 32 additions & 54 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,57 +13,35 @@ jobs:
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.14.4

- uses: actions/setup-python@v5
with:
python-version: '3.x'
check-latest: true

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}

- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/[email protected]

- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}

# Deploy:
# runs-on: 'ubuntu-latest'
# steps:
# - uses: actions/checkout@v3

# - name: 'Deploy'
# uses: 'deliverybot/helm@v1'
# with:
# release: 'analysis-data2'
# namespace: 'analysis-data2'
# chart: './data_analysis'
# token: '${{ github.token }}'
# values: |
# name: foobar
# value-files: >-
# [
# "./data_analysis/values.yaml",
# ]
# env:
# KUBECONFIG_FILE: '${{ secrets.KUBECONFIG }}'

# - name: Set up Helm
# uses: azure/[email protected]
# with:
# version: v3.14.4

# - uses: actions/setup-python@v5
# with:
# python-version: '3.x'
# check-latest: true

# - name: Set up chart-testing
# uses: helm/[email protected]

# - name: Run chart-testing (list-changed)
# id: list-changed
# run: |
# changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
# if [[ -n "$changed" ]]; then
# echo "changed=true" >> "$GITHUB_OUTPUT"
# fi

# - name: Run chart-testing (lint)
# if: steps.list-changed.outputs.changed == 'true'
# run: ct lint --target-branch ${{ github.event.repository.default_branch }}

# - name: Create kind cluster
# if: steps.list-changed.outputs.changed == 'true'
# uses: helm/[email protected]

# - name: Run chart-testing (install)
# if: steps.list-changed.outputs.changed == 'true'
# run: ct install --target-branch ${{ github.event.repository.default_branch }}

0 comments on commit d66fbf0

Please sign in to comment.