-
Notifications
You must be signed in to change notification settings - Fork 74
73 lines (64 loc) · 1.65 KB
/
test-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: 'Test Action (Main)'
on: # rebuild any PRs and main branch changes
push:
branches:
- main
- 'releases/*'
jobs:
# This job can only run on main since secrets aren't given out to PRs on forks
test-general:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Test use GitHub Action secret
uses: ./
with:
envkey_DEBUG: false
envkey_SOME_API_KEY: '123456abcdef'
envkey_SECRET_KEY: ${{ secrets.SECRET_KEY }}
some_other_variable: foobar
file_name: .env
sort_keys: true
- name: Verify envfile
shell: bash
run: |
TEST=$(cat <<-END
DEBUG=false
SECRET_KEY=password123
SOME_API_KEY=123456abcdef
END
)
if [ "$TEST" != "$(cat .env)" ]
then
echo "Actual:"
cat .env
echo "Expected:"
echo "$TEST"
exit 1
fi
- name: Cleanup
run: rm .env
- name: Test use GitHub Action multiline secret
uses: ./
with:
envkey_MULTILINE_SECRET: ${{ secrets.MULTILINE_SECRET }}
- name: Verify envfile
shell: bash
run: |
TEST=$(cat <<-END
MULTILINE_SECRET="line 1\nline 2"
END
)
if [ "$TEST" != "$(cat .env)" ]
then
echo "Actual:"
cat .env
echo "Expected:"
echo "$TEST"
exit 1
fi
- name: Cleanup
run: rm .env