Skip to content

Commit 1569df0

Browse files
committed
update pipelines
1 parent 40d0d03 commit 1569df0

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/release-chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release Chart
22

33
on:
44
push:
5-
branches:
6-
- main
5+
tags:
6+
- "v*"
77

88
jobs:
99
release:

.github/workflows/test-chart.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,19 @@ on:
88
workflow_dispatch:
99
pull_request:
1010

11-
permissions:
12-
contents: read
13-
1411
jobs:
1512
test:
1613
runs-on: ubuntu-latest
1714
steps:
1815
- name: Checkout
19-
uses: actions/checkout@v4
16+
uses: actions/checkout@v3
2017
with:
2118
fetch-depth: 0
2219

2320
- name: Configure Git
2421
run: |
25-
git config user.name "$GITHUB_ACTOR"
26-
git config user.email "[email protected].github.com"
22+
git config user.name blobbot-helm
23+
git config user.email blobbot-helm@github.com
2724
2825
- name: Test
2926
run: make chart-test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
chart-test: chart-lint
2+
chart-test:
33
docker run ${DOCKER_ARGS} --entrypoint /bin/sh --rm -v $(CURDIR):/charts -w /charts helmunittest/helm-unittest:3.11.1-0.3.0 /charts/.github/test.sh
44

55
chart-lint:

0 commit comments

Comments
 (0)