Skip to content

[DEVOPS-1044] Add GitHub actions #1

[DEVOPS-1044] Add GitHub actions

[DEVOPS-1044] Add GitHub actions #1

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
- develop
ft/add_github_actions

Check failure on line 8 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Helm
run: |
helm dependency update helm/ph-ee-engine
helm lint helm/ph-ee-engine
shell: bash
- name: Package Helm Chart
run: |
helm package helm/ph-ee-engine --destination $(Build.ArtifactStagingDirectory)
shell: bash
- name: Publish Helm chart
uses: actions/upload-artifact@v2
with:
name: paymenthub
path: $(Build.ArtifactStagingDirectory)