Skip to content

Commit d5b14d9

Browse files
committed
Test
1 parent 7d4a177 commit d5b14d9

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test
2+
on:
3+
push:
4+
5+
jobs:
6+
validate:
7+
runs-on: ubuntu-latest
8+
env:
9+
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_PRIVATE_KEY }}
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@master
13+
14+
- name: Install pre-requisites
15+
run: |
16+
sudo wget -q -O /usr/bin/sops https://github.com/mozilla/sops/releases/download/v3.7.3/sops-v3.7.3.linux.amd64
17+
sudo chmod a+x /usr/bin/sops
18+
19+
- name: SOPS
20+
run: |
21+
22+
sops decrypt ./secrets.yaml > secrets.yam

0 commit comments

Comments
 (0)