File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ on : push
2+ name : 🚀 Deploy website on push
3+ jobs :
4+ web-deploy :
5+ name : 🎉 Deploy
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : 🚚 Get latest code
9+ uses : actions/checkout@v3
10+ - name : Setup .NET Core
11+ 12+ with :
13+ dotnet-version : 7.0.x
14+ - name : Install dependencies
15+ run : dotnet restore
16+ - name : Build with dotnet
17+ run : dotnet build --configuration Release --no-restore
18+ - name : Publish
19+ run : dotnet publish CodeBeamMudExtensions.sln -c Release -f net7.0 --output ./Release
20+
21+ - name : 📂 Sync files
22+ uses :
SamKirkland/[email protected] 23+ with :
24+ server : codebeam.org
25+ username : ${{ secrets.ftp_username }}
26+ password : ${{ secrets.ftp_password }}
27+ local-dir : ./Release/wwwroot/
28+ server-dir : ./mudextensions/
You can’t perform that action at this time.
0 commit comments