This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch github_actions_take_2 in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit dfb17e57e2524ffac07e4e964fea91c2fa261ae5 Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Dec 13 14:23:00 2020 +0100 Make sure we pass secrets to the workflows. --- .github/workflows/main.yml | 2 ++ .github/workflows/publish_pricing_to_s3.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e7d8440..f2fdf0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -159,6 +159,8 @@ jobs: tox -e docs-travis - name: Trigger ReadTheDocs build + env: + RTD_TOKEN: ${{ secrets.RTD_TOKEN }} run: | pip install requests python ./contrib/trigger_rtd_build.py diff --git a/.github/workflows/publish_pricing_to_s3.yml b/.github/workflows/publish_pricing_to_s3.yml index ea53542..9f85110 100644 --- a/.github/workflows/publish_pricing_to_s3.yml +++ b/.github/workflows/publish_pricing_to_s3.yml @@ -41,5 +41,9 @@ jobs: pip install "tox==3.20.1" - name: Generate and publish pricing data + env: + GCE_API_KEY: ${{ secrets.GCE_API_KEY }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_ACCESS_KEY_SECRET: ${{ secrets.AWS_ACCESS_KEY_SECRET }} run: | tox -escrape-and-publish-provider-prices
