Skip to content

Commit

Permalink
Variables exported to the GitHub environment variable are not exporte…
Browse files Browse the repository at this point in the history
…d to the shell environment
  • Loading branch information
OoLunar committed May 3, 2024
1 parent 78dbf26 commit beb38c9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,9 @@ jobs:
run: |
git clone https://github.com/jedisct1/libsodium.git libs/sodium
cd libs/sodium
git fetch --tags origin
echo "SODIUM_VERSION=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV
git fetch --tags
SODIUM_VERSION=$(git describe --tags $(git rev-list --tags --max-count=1))
echo "SODIUM_VERSION=$SODIUM_VERSION" >> $GITHUB_ENV
git checkout $SODIUM_VERSION
${{ matrix.config.command }}
mkdir -p "${{ github.workspace }}/libs/libsodium/${{ matrix.config.rid }}/native"
Expand Down

0 comments on commit beb38c9

Please sign in to comment.