Skip to content

feat: use official Zapier GitHub Action #5

feat: use official Zapier GitHub Action

feat: use official Zapier GitHub Action #5

Workflow file for this run

name: Zapier Release
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Deploy to Zapier
uses: zapier/actions/cli@v1
with:
deploy-key: ${{ secrets.ZAPIER_DEPLOY_KEY }}
app-id: ${{ secrets.ZAPIER_INTEGRATION_ID }}
command: push --skip-npm-install