Skip to content

Merge pull request #3 from BRIKEV/staging #4

Merge pull request #3 from BRIKEV/staging

Merge pull request #3 from BRIKEV/staging #4

Workflow file for this run

name: Deploy to staging
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}
- name: Setup Git
run: |
git config user.name "Staging Sync Bot"
git config user.email "staging-sync-bot@users.noreply.github.com"
- name: Push to staging
run: |
git fetch origin staging
git checkout staging
git merge main --no-edit
git push origin staging