Skip to content

Commit fd82b97

Browse files
committed
Remove arm64 and add branch development to test actions
1 parent 464e23b commit fd82b97

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
echo "pr-number=${{ github.event.client_payload.github.payload.issue.number }}" >> $GITHUB_OUTPUT
3939
elif [ "${{ steps.get_version.outputs.VERSION }}" != "" ]; then
4040
echo "master=false" >> $GITHUB_OUTPUT
41-
echo "architectures=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
41+
echo "architectures=linux/amd64" >> $GITHUB_OUTPUT
4242
echo "commit-ref=${{ steps.get_version.outputs.VERSION }}" >> $GITHUB_OUTPUT
4343
else
4444
echo "master=true" >> $GITHUB_OUTPUT
45-
echo "architectures=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
45+
echo "architectures=linux/amd64" >> $GITHUB_OUTPUT
4646
echo "commit-ref=${{ github.sha }}" >> $GITHUB_OUTPUT
4747
fi
4848

.github/workflows/check-artifacts.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
- opened
66
- reopened
77
- synchronize
8+
push:
9+
branches:
10+
- development
811

912
jobs:
1013
generated-artifacts:

.github/workflows/check-helm-documentation.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
- opened
66
- reopened
77
- synchronize
8+
9+
push:
10+
branches:
11+
- development
812

913
jobs:
1014
generated-helm-documentation:

.github/workflows/lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Linting
22
on:
33
pull_request:
44

5+
push:
6+
branches:
7+
- development
8+
59
jobs:
610
golangci:
711
name: Lint golang files

0 commit comments

Comments
 (0)