tangled
alpha
login
or
join now
sans-self.org
/
infrastructure
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
Add test workflow
sans-self.org
2 weeks ago
21344e8f
fc4713f9
1/2
test-secrets.yml
failed
6s
validate.yml
success
29s
+15
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
test-secrets.yml
+15
.tangled/workflows/test-secrets.yml
···
1
1
+
when:
2
2
+
- event: ["push"]
3
3
+
branch: ["main"]
4
4
+
5
5
+
engine: "nixery"
6
6
+
7
7
+
steps:
8
8
+
- name: "Verify secret access"
9
9
+
command: |
10
10
+
if [ "$TEST_SECRET_VERIFICATION" = "Hello :)" ]; then
11
11
+
echo "Secret verification passed"
12
12
+
else
13
13
+
echo "Secret verification failed: expected 'Hello :)', got '$TEST_SECRET_VERIFICATION'"
14
14
+
exit 1
15
15
+
fi