Skip to content

Commit 81334d1

Browse files
committed
Updated github secret
1 parent 0a6f244 commit 81334d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
kubectl cluster-info
6868
make install
6969
mkdir -p .local
70-
echo "${{ secrets.SECRET_KUBERNETES_RESOURCES }}" > .local/test-config.yaml
70+
echo "${{ secrets.SECRET_KUBERNETES_RESOURCES }}" | base64 --decode > .local/test-config.yaml
7171
7272
- name: Test
7373
run: make test

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
kubectl cluster-info
7575
make install
7676
mkdir -p .local
77-
echo "${{ secrets.SECRET_KUBERNETES_RESOURCES }}" > .local/test-config.yaml
77+
echo "${{ secrets.SECRET_KUBERNETES_RESOURCES }}" | base64 --decode > .local/test-config.yaml
7878
7979
- name: Test
8080
run: make test

0 commit comments

Comments
 (0)