This commit is contained in:
2025-02-04 16:17:03 +03:00
parent bb54383ad0
commit a51a5e9f12
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ jobs:
- name: Checkout
uses: actions/checkout@master
- name: Checkout LFS
if: ${{ inputs.lfs }}
if: ${{ inputs.lfs == 'true' }}
run: |
UrlBase=$GITHUB_SERVER_URL; \
UrlLfsBase=$UrlBase/${{ github.repository }}.git/info/lfs/objects; \

View File

@@ -54,7 +54,7 @@ jobs:
source .env
cat .env
- name: Migrate
if: ${{ inputs.migrate }}
if: ${{ inputs.migrate == 'true' }}
run: |
docker run --env-file=.env --pull=always --rm cr.yandex/$CR_REGISTRY/$CR_REPO:$TAG alembic upgrade head
- name: Deploy