Skip to content

Commit

Permalink
Fix missing quotes around variables; set up Python for AppImage too
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jan 19, 2024
1 parent b754f5e commit 0b6deeb
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
-Replace '^__version__\s*=\s*"[^"]+', "`$0.${{ steps.vars.outputs.sha_short }}" |`
Out-File version.py
# Ensure Python version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: $PYTHON_VERSION
python-version: "$PYTHON_VERSION"

- name: Set up Python virtual environment
run: |
Expand Down Expand Up @@ -97,7 +98,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: $PYTHON_VERSION
python-version: "$PYTHON_VERSION"

- name: Install system dependencies
run: |
Expand Down Expand Up @@ -167,6 +168,12 @@ jobs:
echo "app_version=$(python3 -c 'from version import __version__ as v; print(v)')" >> "${GITHUB_OUTPUT}"
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}"
# Ensure Python version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "$PYTHON_VERSION"

- name: Append git revision to project version
run: |
sed -ri "s/^__version__\s*=\s*\"[^\"]+/\0.${{ steps.vars.outputs.sha_short }}/" version.py
Expand Down

0 comments on commit 0b6deeb

Please sign in to comment.