Skip to content

Commit

Permalink
Try adding the variables under env.
Browse files Browse the repository at this point in the history
This looks like a known issue with containers...

actions/upload-artifact#216 (comment)
  • Loading branch information
namannimmo10 committed Aug 15, 2024
1 parent bb47198 commit 98bbdbd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ on:
branches:
- main

env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_REF: ${{ github.ref }}
GITHUB_SHA: ${{ github.sha }}

jobs:
build-linux:
runs-on: iris-gpu
Expand All @@ -23,9 +29,6 @@ jobs:
steps:
- name: Checkout repository code
uses: actions/checkout@v4
with:
ref: "main"
fetch-depth: 0

- name: Create conda environment
uses: mamba-org/setup-micromamba@v1
Expand Down Expand Up @@ -54,7 +57,6 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
working-directory: /__w/httomolibgpu/httomolibgpu
token: ${{ secrets.CODECOV_TOKEN }}
files: /home/runner/coverage.xml
fail_ci_if_error: true
Expand Down

0 comments on commit 98bbdbd

Please sign in to comment.