Skip to content

.github/workflows/deploy-dev.yml #234

.github/workflows/deploy-dev.yml

.github/workflows/deploy-dev.yml #234

Workflow file for this run

name: Deploy to Dev
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy_website_to_dev:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Deploy to dev
run: |
git checkout -b development
git merge ${GITHUB_REF#refs/heads/}
git push origin development -f