Skip to content

Commit

Permalink
Fix variable definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
dcarlson-gs committed May 13, 2024
1 parent 2655662 commit 9e3e261
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Set Python release
run: |
PYTHON_VERSION="${{ matrix.python-version }}"
echo "PYTHON_RELEASE=\"${PYTHON_VERSION/./}\"" >> "$GITHUB_ENV"
PYTHON_VERSION=${{ matrix.python-version }}
echo "PYTHON_RELEASE=${PYTHON_VERSION/./}" >> "$GITHUB_ENV"
- name: Lint with flake8
run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Expand All @@ -48,8 +48,8 @@ jobs:
- name: Set Mystiks version
run: |
RELEASE_NAME="${{ github.event.release.name }}"
echo "MYSTIKS_VERSION=\"${RELEASE_NAME:1}\"" >> "$GITHUB_ENV"
RELEASE_NAME=${{ github.event.release.name }}
echo "MYSTIKS_VERSION=${RELEASE_NAME:1}" >> "$GITHUB_ENV"
if: github.event_name == 'release' && github.event.action == 'published'

- name: Update Mystiks Core version
Expand Down

0 comments on commit 9e3e261

Please sign in to comment.