File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 24
24
acceptance-ee :
25
25
timeout-minutes : 60
26
26
runs-on : ubuntu-latest
27
- if : ${{ github.event_name == 'push' }}
27
+ if : github.event_name == 'push' && github.repository_owner == 'gitlabhq'
28
28
steps :
29
29
- name : Set up Go
30
30
38
38
- name : Set up Enterprise Edition License file
39
39
run : |
40
40
openssl version
41
- mkdir license
42
- [[ -n "${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}" ]] && echo decrypt
43
- [[ -n "${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}" ]] && openssl enc -d -aes-256-cbc -pbkdf2 -iter 20000 -in Gitlab-license.encrypted -out Gitlab-license.txt -pass "pass:${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}"
44
- chmod 666 Gitlab-license.txt || true
41
+ openssl enc -d -aes-256-cbc -pbkdf2 -iter 20000 -in Gitlab-license.encrypted -out Gitlab-license.txt -pass "pass:${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}"
45
42
46
43
- name : Start Gitlab
47
44
run : make testacc-up SERVICE=gitlab-ee
You can’t perform that action at this time.
0 commit comments