Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
fix: removed unused environmental variables
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKanera committed Jan 4, 2021
1 parent 6477c9f commit dd7f600
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 0 additions & 2 deletions components/my-project/my-project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit dd7f600

Please sign in to comment.