Merge pull request #31 from PostHog/free-trigger #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zapier Push | |
on: | |
push: | |
branches: master | |
jobs: | |
build: | |
name: Push integration to Zapier | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install package.json dependencies with npm | |
run: npm install | |
- name: Configure Zapier deploy key | |
run: 'echo "{ \"deployKey\": \"$ZAPIER_DEPLOY_KEY\" }" > ~/.zapierrc' | |
env: | |
ZAPIER_DEPLOY_KEY: ${{ secrets.ZAPIER_DEPLOY_KEY }} | |
- name: Set up Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Push integration to Zapier | |
run: npm run push |