diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 750e696..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: main -on: - push: - branches: - - 'main' - -jobs: - spec-to-airtable: - # Job name is Greeting - name: Upload method spec to airtable - # This job runs on Linux - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.7' # Version range or exact version of a Python version to use, using SemVer's version range syntax - - name: Install dependencies - run: | - python -m pip install -e . - python -m pip install airtable-python-wrapper==0.15.0 - - name: Upload spec - run: | - echo "TODO: skipping upload for now" - #python docs/scripts/upload_airtable.py - env: - AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }} -