start work on project refactor;

create file structure
move old code to /src/old
This commit is contained in:
2026-05-15 10:52:10 +03:00
parent 0cea4cfcb8
commit 0ab96e4399
31 changed files with 443 additions and 14 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}/ytpld:${VERSION}" >> $GITHUB_ENV
echo "LATEST_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytpld:latest" >> $GITHUB_ENV
echo "RELEASE_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytst:${VERSION}" >> $GITHUB_ENV
echo "LATEST_IMAGE=ghcr.io/${GITHUB_ACTOR}/ytst: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}/ytpld:${{ steps.version.outputs.version }}
docker push ghcr.io/${GITHUB_ACTOR}/ytst:${{ steps.version.outputs.version }}
docker load -i "${{ github.workspace }}/artifacts/docker-images/docker-image-latest.tar"
docker push ghcr.io/${GITHUB_ACTOR}/ytpld:latest
docker push ghcr.io/${GITHUB_ACTOR}/ytst:latest
- name: Create Release
uses: softprops/action-gh-release@v3