refactor: change project name;

ci: fix integration workflow
This commit is contained in:
2026-05-16 18:08:54 +03:00
parent decc4c675d
commit 0436c0b85d
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -200,8 +200,8 @@ jobs:
- name: Set docker image names
run: |
VERSION="${{ steps.version.outputs.version }}"
echo "RELEASE_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytplst:${VERSION}" >> $GITHUB_ENV
echo "LATEST_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytplst:latest" >> $GITHUB_ENV
echo "RELEASE_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytpl-Sync:${VERSION}" >> $GITHUB_ENV
echo "LATEST_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytpl-Sync:latest" >> $GITHUB_ENV
- name: Build Docker image
run: |
@@ -248,9 +248,9 @@ jobs:
- name: Push Docker images
run: |
docker load -i "${{ github.workspace }}/artifacts/docker-images/docker-image.tar"
docker push ghcr.io/${GITHUB_ACTOR}/ytplst:${{ steps.version.outputs.version }}
docker push ghcr.io/${GITHUB_ACTOR}/ytpl-Sync:${{ steps.version.outputs.version }}
docker load -i "${{ github.workspace }}/artifacts/docker-images/docker-image-latest.tar"
docker push ghcr.io/${GITHUB_ACTOR}/ytplst:latest
docker push ghcr.io/${GITHUB_ACTOR}/ytpl-Sync:latest
- name: Create Release
uses: softprops/action-gh-release@v3
+1 -1
View File
@@ -38,5 +38,5 @@ jobs:
- name: Run integration tests
run: |
set -euo pipefail
python -m pip install -e .
python -m pip install -e . ".[test]"
pytest -m integration