diff --git a/.github/workflows/docker-build-version.yml b/.github/workflows/docker-build-version.yml index 5079f70..26a08a3 100644 --- a/.github/workflows/docker-build-version.yml +++ b/.github/workflows/docker-build-version.yml @@ -17,7 +17,7 @@ jobs: - name: Login to Docker registry uses: docker/login-action@v2 with: - registry: ${{ env.REGISTRY }} + registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push @@ -26,4 +26,4 @@ jobs: context: . platforms: linux/amd64,linux/arm64 push: true - tags: ${{ env.REGISTRY }}/${{ github.repository }}:latest,${{ env.REGISTRY }}/${{ github.repository }}:${{ github.ref_name }} + tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.ref_name }} diff --git a/.github/workflows/pypi-build-version.yml b/.github/workflows/pypi-build-version.yml index eb9c8b3..7c5f291 100644 --- a/.github/workflows/pypi-build-version.yml +++ b/.github/workflows/pypi-build-version.yml @@ -12,7 +12,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install --yes python3-setuptools python3-build + sudo apt-get install --yes python3-setuptools python3-build python3-venv - name: Build run: | python3 -m build