Added parameters: TextColor, CheckBoxCheckedColor, CheckBoxUnCheckedC… #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: 🚀 Deploy website on push | |
jobs: | |
web-deploy: | |
name: 🎉 Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: 7.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build with dotnet | |
run: dotnet build --configuration Release --no-restore | |
- name: Publish | |
run: dotnet publish /home/runner/work/CodeBeam.MudBlazor.Extensions/CodeBeam.MudBlazor.Extensions/ComponentViewer.Wasm/ComponentViewer.Wasm.csproj -c Release -f net7.0 --output ./Release | |
- name: 📂 Sync files | |
if: ${{ github.repository_owner == 'CodeBeamOrg' }} | |
uses: SamKirkland/FTP-Deploy-Action@v4.3.4 | |
with: | |
server: codebeam.org | |
username: ${{ secrets.ftp_username }} | |
password: ${{ secrets.ftp_password }} | |
local-dir: ./Release/wwwroot/ | |
server-dir: ./mudextensions/ |