Skip to content

Build and Stage

Build and Stage #2

name: Build and Stage
on:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build_web.yml

Check failure on line 8 in .github/workflows/build_and_deploy_web_staging.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_and_deploy_web_staging.yml

Invalid workflow file

error parsing called workflow ".github/workflows/build_and_deploy_web_staging.yml" -> "./.github/workflows/build_web.yml" (source branch with sha:a4e28a965acc36b613a60bc27767ade2558c1543) : workflow is not reusable as it is missing a `on.workflow_call` trigger
deploy:
runs-on: ubuntu-latest
steps:
- name: Upload to SFTP
uses: wlixcc/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local_path: ./build/web/*
remote_path: staging.wonderous.app/web
sftp_only: true