forked from dagger/dagger
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 890 Bytes
/
helm-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Helm
on:
push:
branches: ["main"]
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths-ignore:
- docs/**
# Enable manual trigger for easier debugging
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
test:
# runs-on: "${{ github.repository == 'dagger/dagger' && 'dagger-g2-v0-13-5-4c' || 'ubuntu-latest' }}"
runs-on: "ubuntu-latest"
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: "helm lint"
uses: ./.github/actions/call
with:
function: "helm lint"
- name: "helm test"
uses: ./.github/actions/call
with:
function: "helm test"
- name: "helm test publish"
uses: ./.github/actions/call
with:
function: "helm publish --dry-run=true --tag=main"