Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
KBC_DEVELOPERPORTAL_PASSWORD: ${{ secrets.KBC_DEVELOPERPORTAL_PASSWORD }}
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
SERVICE_ACCOUNT_JSON: ${{ secrets.SERVICE_ACCOUNT_JSON }}
KBC_URL: "https://connection.keboola.com"
KBC_TOKEN: ${{ secrets.KBC_TOKEN }}
KBC_COMPONENTID: "keboola.ex-google-analytics-v4"
Expand All @@ -26,7 +27,7 @@ jobs:
- name: Build image and run tests
run: |
docker build -t $APP_IMAGE .
docker run -e KBC_DATA_TYPE_SUPPORT=none -e CLIENT_ID -e CLIENT_SECRET -e ACCESS_TOKEN -e REFRESH_TOKEN -e VIEW_ID -e KBC_URL -e KBC_TOKEN -e KBC_COMPONENTID $APP_IMAGE composer ci
docker run -e KBC_DATA_TYPE_SUPPORT=none -e CLIENT_ID -e CLIENT_SECRET -e ACCESS_TOKEN -e REFRESH_TOKEN -e VIEW_ID -e KBC_URL -e KBC_TOKEN -e KBC_COMPONENTID -e SERVICE_ACCOUNT_JSON $APP_IMAGE composer ci
- name: Push image to ECR
run: |
docker pull quay.io/keboola/developer-portal-cli-v2:latest
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"ext-json": "*",
"keboola/common-exceptions": "^1.1",
"keboola/csv": "^1.1",
"keboola/google-client-bundle": "^5.4",
"keboola/google-client-bundle": "^6.0",
"keboola/php-component": "^10.1",
"keboola/storage-api-client": "^12.9",
"symfony/config": "^5.2",
Expand Down
Loading