[deploy] Fix deploy failing
This commit is contained in:
@ -90,13 +90,18 @@ jobs:
|
||||
python -m pip install --upgrade pip
|
||||
pip install poetry
|
||||
|
||||
- name: Write commit hash
|
||||
- name: Write commit hash to build file
|
||||
run: |
|
||||
echo "commit = '${{ gitea.sha }}'" > vrobbler/_commit.py
|
||||
mkdir -p build_meta
|
||||
echo "${{ gitea.sha }}" > build_meta/commit.txt
|
||||
|
||||
- name: Build package
|
||||
- name: Build package with commit info
|
||||
run: |
|
||||
# Write commit to _commit.py before build
|
||||
echo "commit = '${{ gitea.sha }}'" > vrobbler/_commit.py
|
||||
poetry build
|
||||
# Restore original _commit.py
|
||||
git checkout vrobbler/_commit.py
|
||||
|
||||
- name: Copy wheel to server and deploy
|
||||
uses: appleboy/ssh-action@v1.0.3
|
||||
@ -106,9 +111,6 @@ jobs:
|
||||
key: ${{ secrets.JAIL_KEY }}
|
||||
command_timeout: 2m
|
||||
script: |
|
||||
TMP_DIR=$(mktemp -d)
|
||||
# The wheel file needs to be copied first - we'll use scp outside this
|
||||
# For now, let's write the commit hash to a file on the server
|
||||
mkdir -p /var/lib/vrobbler
|
||||
echo "${{ gitea.sha }}" > /var/lib/vrobbler/commit.txt
|
||||
pip uninstall -y vrobbler
|
||||
|
||||
Reference in New Issue
Block a user