Skip to content

Commit

Permalink
.github: fetch variables from the proper place
Browse files Browse the repository at this point in the history
They're repository variables, they reside in `vars`.

Signed-off-by: Roman Khimov <[email protected]>
  • Loading branch information
roman-khimov committed Nov 10, 2023
1 parent 6137010 commit 45aed71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/neofs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
NEOFS_WALLET: ${{ secrets.NEOFS_WALLET }}
NEOFS_WALLET_PASSWORD: ${{ secrets.NEOFS_WALLET_PASSWORD }}
NEOFS_NETWORK_DOMAIN: ${{ env.NEOFS_NETWORK_DOMAIN }}
NEOFS_HTTP_GATE: ${{ env.NEOFS_HTTP_GATE }}
STORE_OBJECTS_CID: ${{ env.STORE_OBJECTS_CID }}
NEOFS_NETWORK_DOMAIN: ${{ vars.NEOFS_NETWORK_DOMAIN }}
NEOFS_HTTP_GATE: ${{ vars.NEOFS_HTTP_GATE }}
STORE_OBJECTS_CID: ${{ vars.STORE_OBJECTS_CID }}
PATH_TO_FILES_DIR: output

0 comments on commit 45aed71

Please sign in to comment.