mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
GitHub Actions: change passwords to be hard coded
As much as I hate having passwords exposed through the source code, since GitHub wisely prevents reading secrets in pull requests, there isn't really a sane way to have this use confidential credentials. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d0e52140e5
commit
ab71f5daca
3 changed files with 5 additions and 8 deletions
2
.github/workflows/linux-bionic-5.9.yml
vendored
2
.github/workflows/linux-bionic-5.9.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
- name: test desktop build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-u18@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudu18 }}
|
||||
SSRF_USER_PASSWORD: geheim-u18
|
||||
run: |
|
||||
# and now run the tests - with Qt 5.9 we can only run the desktop flavor
|
||||
echo "------------------------------------"
|
||||
|
|
7
.github/workflows/linux-eoan-5.12.yml
vendored
7
.github/workflows/linux-eoan-5.12.yml
vendored
|
@ -18,9 +18,6 @@ jobs:
|
|||
uses: actions/checkout@v1
|
||||
|
||||
- name: get container ready for build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-u19@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudu19 }}
|
||||
run: |
|
||||
echo "--------------------------------------------------------------"
|
||||
echo "update distro and install dependencies"
|
||||
|
@ -49,7 +46,7 @@ jobs:
|
|||
- name: test mobile build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-u19@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudu19 }}
|
||||
SSRF_USER_PASSWORD: geheim-u19
|
||||
run: |
|
||||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for mobile"
|
||||
|
@ -69,7 +66,7 @@ jobs:
|
|||
- name: test desktop build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-u19@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudu19 }}
|
||||
SSRF_USER_PASSWORD: geheim-u19
|
||||
run: |
|
||||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for desktop"
|
||||
|
|
4
.github/workflows/mac.yml
vendored
4
.github/workflows/mac.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
|||
- name: test mobile build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-mac@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudmac }}
|
||||
SSRF_USER_PASSWORD: geheim-mac
|
||||
run: |
|
||||
echo "------------------------------------"
|
||||
echo "run tests for mobile build"
|
||||
|
@ -64,7 +64,7 @@ jobs:
|
|||
- name: test desktop build
|
||||
env:
|
||||
SSRF_USER_EMAIL: ssrftest-mac@hohndel.org
|
||||
SSRF_USER_PASSWORD: ${{ secrets.cloudmac }}
|
||||
SSRF_USER_PASSWORD: geheim-mac
|
||||
run: |
|
||||
echo "------------------------------------"
|
||||
echo "run tests for desktop build"
|
||||
|
|
Loading…
Reference in a new issue