This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new e26f0124a Utilize CODECOV_TOKEN secret to make codecov upload step 
less likely to fail.
e26f0124a is described below

commit e26f0124ae93a65ea19473847a391b1ed8030abf
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed Aug 2 13:24:55 2023 +0200

    Utilize CODECOV_TOKEN secret to make codecov upload step less likely to
    fail.
---
 .github/workflows/main.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 88ba84679..907515f59 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -154,6 +154,9 @@ jobs:
       - name: Upload Coverage to codecov.io
         uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d 
# v3.1.4
         with:
+          # We utilize secret for more realiable builds. Without secret being 
set, upload step
+          # fails fairly often.
+          token: ${{ secrets.CODECOV_TOKEN }}
           fail_ci_if_error: true
           verbose: true
 

Reply via email to