Skip to content

Implement github action to deploy to test environment #7

Implement github action to deploy to test environment

Implement github action to deploy to test environment #7

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deployment:
runs-on: ubuntu-latest
environment: ${{ github.ref_name }}
steps:
- name: Trigger deploy
run: |
curl -sS -X POST ${{ secrets.HOOKURL }} -H "X-Key: ${{ secrets.HOOKSECRET }}"