diff --git a/.github/workflows/publis-container-dev.yaml b/.github/workflows/publis-container-dev.yaml index 81cb2d5..6186f4a 100644 --- a/.github/workflows/publis-container-dev.yaml +++ b/.github/workflows/publis-container-dev.yaml @@ -24,6 +24,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + path: driver-did-iden3 - uses: actions/setup-node@v4 with: @@ -71,6 +73,7 @@ jobs: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} ECR_REPOSITORY: ${{ env.ECR_REPOSITORY }} run: | + cd driver-did-iden3 && \ docker buildx build --push \ --platform linux/amd64,linux/arm64 \ -t ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:${{ github.ref_name }} \ diff --git a/.github/workflows/push-container.yaml b/.github/workflows/push-container.yaml index fadaced..5d9e524 100644 --- a/.github/workflows/push-container.yaml +++ b/.github/workflows/push-container.yaml @@ -18,6 +18,8 @@ jobs: steps: - name: Checkout driver-did-iden3 uses: actions/checkout@v3 + with: + path: driver-did-iden3 - name: Login to GitHub Container Registry uses: docker/login-action@v1 @@ -50,6 +52,7 @@ jobs: - name: build and deploy to DockerHub run: | + cd driver-did-iden3 && \ docker buildx build --push \ --platform linux/amd64,linux/arm64 \ -t ghcr.io/iden3/driver-did-iden3:${{ github.ref_name }} \