From fdd31e064d18adaa1fd25fb8cc417742f75424df Mon Sep 17 00:00:00 2001 From: Stephane Bruckert Date: Tue, 1 Nov 2022 20:46:42 +0000 Subject: [PATCH 1/2] Add secrets to GHA workflow --- .github/workflows/pythonapp.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 48c27021..d792c631 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -9,7 +9,9 @@ jobs: strategy: matrix: python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"] - + env: + SPOTIPY_CLIENT_ID: ${{ secrets.SPOTIPY_CLIENT_ID }} + SPOTIPY_CLIENT_SECRET: ${{ secrets.SPOTIPY_CLIENT_SECRET }} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From a5a2612c7ca999c9f173bed4930a774cf01dd5df Mon Sep 17 00:00:00 2001 From: Stephane Bruckert Date: Tue, 1 Nov 2022 20:50:08 +0000 Subject: [PATCH 2/2] cl --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 557325c2..d2d808df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -// Add your changes here and then delete this line +### Added + +* Make test app credentials available in GHA as secrets ## [2.21.0] - 2022-09-26