Stéphane Burwash
06/22/2023, 3:35 PMvisch
06/22/2023, 5:25 PMname: pipeline
on:
# schedule:
# Daily at 2am
# - cron: '0 2 * * *'
workflow_dispatch:
jobs:
pipeline:
runs-on: ubuntu-latest
env:
python-version: 3.9
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install meltano==1.89.0
meltano install
- name: Run tap-clickup to target-stitch
run: meltano elt tap-clickup target-stitch
env:
TAP_CLICKUP_API_TOKEN: ${{ secrets.TAP_CLICKUP_API_TOKEN }}
TARGET_STITCH_CLIENT_ID: ${{ secrets.TARGET_STITCH_CLIENT_ID }}
TARGET_STITCH_TOKEN: ${{ secrets.TARGET_STITCH_TOKEN }}
Stéphane Burwash
06/22/2023, 5:26 PMvisch
06/22/2023, 5:26 PMvisch
06/22/2023, 5:26 PMmeltano elt tap-clickup target-stitch
Already imports it to stitch 🤷visch
06/22/2023, 5:27 PMvisch
06/22/2023, 5:27 PM