diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index 8f6e82c6..35393d56 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -14,7 +14,7 @@ jobs: - name: Build Docker image run: | - docker build . --tag gcr.io/${{ secrets.GCLOUD_PROJECT }}/${{ secrets.GCLOUD_APP_NAME }} --build-arg FIREBASE_CONFIG=${{ secrets.FIREBASE_CONFIG }} --build-arg SERVICE_ACCOUNT=${{ secrets.SERVICE_ACCOUNT }} --build-arg STORAGE_SERVICE_ACCOUNT=${{ secrets.STORAGE_SERVICE_ACCOUNT }} --build-arg TENANT=${{ secrets.TENANT_ID }} --build-arg BROWSER_BASE_URL=${{ secrets.BROWSER_BASE_URL }} + docker build . --tag gcr.io/${{ secrets.GCLOUD_PROJECT }}/${{ secrets.GCLOUD_APP_NAME }} --build-arg FIREBASE_CONFIG=${{ secrets.FIREBASE_CONFIG }} --build-arg SERVICE_ACCOUNT=${{ secrets.SERVICE_ACCOUNT }} --build-arg TENANT=${{ secrets.TENANT_ID }} --build-arg BROWSER_BASE_URL=${{ secrets.BROWSER_BASE_URL }} - name: Authenticate into GCP uses: GoogleCloudPlatform/github-actions/setup-gcloud@master diff --git a/Dockerfile b/Dockerfile index d8a30848..30a84bc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,6 @@ ENV FIREBASE_CONFIG=${FIREBASE_CONFIG} ARG SERVICE_ACCOUNT ENV SERVICE_ACCOUNT=${SERVICE_ACCOUNT} -ARG STORAGE_SERVICE_ACCOUNT -ENV STORAGE_SERVICE_ACCOUNT=${STORAGE_SERVICE_ACCOUNT} - ARG TENANT ENV TENANT=${TENANT} diff --git a/components/my-project/my-project.vue b/components/my-project/my-project.vue index 3bee961b..74746510 100644 --- a/components/my-project/my-project.vue +++ b/components/my-project/my-project.vue @@ -129,8 +129,6 @@ export default defineComponent({ const { title, description, links, mandatoryFiles, optionalFiles, submitted, deadlineDate, keywords } = response.data; - console.log(deadlineDate); - titleRef.value = title; descriptionRef.value = description; linksRef.value = links;