diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6dc26c1..a7bf9ad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,12 +21,18 @@ jobs: steps: - uses: actions/checkout@v3 - uses: depot/setup-action@v1 + - name: Log in to the Container registry + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Docker meta id: meta uses: docker/metadata-action@v4 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - name: Build & push backend + - name: Build & push uses: depot/build-push-action@v1 with: project: 3tz1wxj8cr @@ -34,11 +40,3 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - - name: Build & push gephi - uses: depot/build-push-action@v1 - with: - project: 3tz1wxj8cr - context: gephi - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}