Skip to content

Commit d73ce1b

Browse files
committed
chore: remove cleanup script from configmap, add linting
1 parent 232e567 commit d73ce1b

File tree

6 files changed

+433
-280
lines changed

6 files changed

+433
-280
lines changed

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
with:
4141
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4242
tags: |
43-
type=raw,value=${{ steps.version.outputs.version }}
44-
type=raw,value=latest
43+
type=semver,value={{ steps.version.outputs.version }}
44+
type=sha
4545
4646
- name: Set up Docker Buildx
4747
uses: docker/setup-buildx-action@v3
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Lint cleanup.sh script
2+
3+
on:
4+
push:
5+
paths:
6+
- 'ci-deployment-cleanup/helm-chart/cleanup.sh'
7+
pull_request:
8+
paths:
9+
- 'ci-deployment-cleanup/helm-chart/cleanup.sh'
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
shellcheck:
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Run ShellCheck
22+
uses: ludeeus/action-shellcheck@master
23+
with:
24+
scandir: './ci-deployment-cleanup/helm-chart'
25+
format: gcc
26+
severity: error

0 commit comments

Comments
 (0)