diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-02 15:34:46 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-04 02:47:45 +0900 |
commit | ab71f5daca696e23a4ad63a475c1a43219633c29 (patch) | |
tree | 645b259bb0354861737d1de7d75de5f06beaf8f0 /.github/workflows/mac.yml | |
parent | d0e52140e586e4f9537738177d54400a855b7d2b (diff) | |
download | subsurface-ab71f5daca696e23a4ad63a475c1a43219633c29.tar.gz |
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>
Diffstat (limited to '.github/workflows/mac.yml')
-rw-r--r-- | .github/workflows/mac.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 72440c24f..d3889ab20 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -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" |