Skip to content

Commit

Permalink
Merge branch 'main' into feature/create-s3-bucket-if-needed
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisam authored Oct 28, 2024
2 parents abab3bc + e486b9f commit 0d54b9f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ jobs:
BUILD_DATE=${{ env.NOW }}
VCS_REF=${{ github.sha }}
VERSION=${{ env.APP_VERSION }}.${{ github.run_number }}
EN_AWS_CLI=false
EN_AZURE=false
EN_GCLOUD=false
EN_AWS_CLI=true
EN_AZURE=true
EN_GCLOUD=true
EN_MINIO=true
EN_RCLONE=true
EN_GPG=true
Expand All @@ -114,6 +114,12 @@ jobs:
run: |
echo "$GCLOUD_KEY" | base64 --decode > ${{ github.workspace }}/test/gh-actions/gcloud.json
- name: Install yq and remove gcloud section if event is pull_request
if: github.event_name == 'pull_request'
run: |
sudo apt-get install -y yq
yq eval 'del(.gcloud)' -i test/gh-actions/mongo-test.yml
- name: Run Mgob image
env:
AZURE_CONNECTIONSTRING: ${{ secrets.AZURE_CONNECTIONSTRING }}
Expand Down

0 comments on commit 0d54b9f

Please sign in to comment.