Skip to content

fix github workflow #73

fix github workflow

fix github workflow #73

Workflow file for this run

name: Staging
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Prepare Remote
uses: appleboy/[email protected]
with:
host: publisher-services.podlove.dev
username: root
key: ${{ secrets.STAGING_SSH_KEY }}
script: |
mkdir -p app
cd app
[ ! -d ".git" ] && git clone -–depth=1 [email protected]:podlove/publisher-next.git .
- name: Deploy to staging environment
uses: appleboy/[email protected]
env:
SHA: ${{ github.sha }}
VITE_BUILD: ${{ github.sha }}
with:
host: publisher-services.podlove.dev
username: root
key: ${{ secrets.STAGING_SSH_KEY }}
envs: SHA,VITE_BUILD
script: |
cd app
git fetch
git reset --hard $SHA
devbox install
devbox services down
devbox run bootstrap
devbox run build
devbox services up --background