mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-06-06 20:39:37 +00:00
Fix missing quotes around variables; set up Python for AppImage too
This commit is contained in:
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@@ -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: |
|
||||
@@ -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: |
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user