ci: post-release cleanup
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
0027dbc0e5
commit
ec9cacb610
|
@ -95,11 +95,7 @@ jobs:
|
||||||
INSTALL: ${{ steps.cache-poetry.outputs.cache-hit }}
|
INSTALL: ${{ steps.cache-poetry.outputs.cache-hit }}
|
||||||
run: |
|
run: |
|
||||||
scripts/ci_prepare.sh
|
scripts/ci_prepare.sh
|
||||||
# Sync anyways since stable will have different dependencies
|
# install anyways since stable will have different dependencies
|
||||||
# TODO: Remove after next stable release
|
|
||||||
if [[ -f "Pipfile.lock" ]]; then
|
|
||||||
pipenv install --dev
|
|
||||||
fi
|
|
||||||
poetry install
|
poetry install
|
||||||
- name: run migrations to stable
|
- name: run migrations to stable
|
||||||
run: poetry run python -m lifecycle.migrate
|
run: poetry run python -m lifecycle.migrate
|
||||||
|
@ -108,13 +104,7 @@ jobs:
|
||||||
set -x
|
set -x
|
||||||
git fetch
|
git fetch
|
||||||
git reset --hard HEAD
|
git reset --hard HEAD
|
||||||
# TODO: Remove after next stable release
|
|
||||||
rm -f poetry.lock
|
|
||||||
git checkout $GITHUB_SHA
|
git checkout $GITHUB_SHA
|
||||||
# TODO: Remove after next stable release
|
|
||||||
if [[ -f "Pipfile.lock" ]]; then
|
|
||||||
pipenv install --dev
|
|
||||||
fi
|
|
||||||
poetry install
|
poetry install
|
||||||
- name: prepare
|
- name: prepare
|
||||||
env:
|
env:
|
||||||
|
|
Reference in New Issue