Skip to content

Commit

Permalink
Create biuld_and_deploy_web_staging
Browse files Browse the repository at this point in the history
  • Loading branch information
esDotDev authored Sep 26, 2024
1 parent 5912b84 commit 068528f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/biuld_and_deploy_web_staging
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy Web - Staging

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
uses: ./.github/workflows/build_web.yaml

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

0 comments on commit 068528f

Please sign in to comment.