diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a5121ad71b38..ed7535409fa4 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -30,12 +30,12 @@ jobs: - name: Test wheel run: ./dev/test-wheel.sh - name: Upload wheel - if: ${{ github.repository == 'adap/flower' && !github.event.pull_request.head.repo.fork }} + if: ${{ github.repository == 'adap/flower' && !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} id: upload env: - AWS_DEFAULT_REGION: ${{ secrets. AWS_DEFAULT_REGION }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets. AWS_SECRET_ACCESS_KEY }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} run: | cd ./dist echo "WHL_PATH=$(ls *.whl)" >> "$GITHUB_OUTPUT" @@ -73,7 +73,7 @@ jobs: dataset: | import tensorflow as tf tf.keras.datasets.cifar10.load_data() - + - directory: tabnet dataset: | import tensorflow_datasets as tfds @@ -83,7 +83,7 @@ jobs: dataset: | from torchvision.datasets import CIFAR10 CIFAR10('./data', download=True) - + - directory: pytorch-lightning dataset: | from torchvision.datasets import MNIST @@ -102,7 +102,7 @@ jobs: - directory: fastai dataset: | from fastai.vision.all import untar_data, URLs - untar_data(URLs.MNIST) + untar_data(URLs.MNIST) - directory: pandas dataset: |