Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindronningstad committed Jan 9, 2024
1 parent e273c98 commit dba3491
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
uses: actions/checkout@v3

- name: Read zcbor version
run: echo "ZCBOR_VERSION=$(cat zcbor/VERSION)" >> $GITHUB_ENV
run: |
echo "ZCBOR_VERSION=$(cat zcbor/VERSION)"
echo "ZCBOR_VERSION=$(cat zcbor/VERSION)" >> $env:GITHUB_ENV
- name: Install west and dependencies
run: |
Expand All @@ -72,8 +74,9 @@ jobs:
- name: Generate and install zcbor package
run: |
set -e
python build bdist_wheel
pip install dist/zcbor-$ZCBOR_VERSION-py3-none-any.whl
pip install dist/zcbor-$env:ZCBOR_VERSION-py3-none-any.whl
pip uninstall -y zcbor
pip install -e .
Expand Down

0 comments on commit dba3491

Please sign in to comment.