Skip to content

Handle FormattingCheck specially #169

Handle FormattingCheck specially

Handle FormattingCheck specially #169

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
- prod
tags:
- 'v*'
jobs:
deployment:
runs-on: ubuntu-latest
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'main' || github.ref_name }}
steps:
- name: Trigger deploy
run: |
curl --fail-with-body --silent --show-error -X POST ${{ secrets.HOOKURL }} \
-H "X-Key: ${{ secrets.HOOKSECRET }}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "commit=${{ github.sha }}"