forked from PBoleander/Calc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11b925d
commit 1d02dd6
Showing
4 changed files
with
71 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Azure Static Web Apps CI/CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- release/* | ||
|
||
jobs: | ||
build_and_deploy_job: | ||
runs-on: ubuntu-latest | ||
name: Build and Deploy Job | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
|
||
- name: Install wasm-tools | ||
run: dotnet workload install wasm-tools wasm-experimental | ||
|
||
- name: Install DotNetCompress | ||
run: dotnet tool install --global DotNetCompress --version 1.0.0-preview.4 --no-cache | ||
|
||
- name: Publish .NET Project | ||
run: dotnet publish Calc.Browser/Calc.Browser.csproj -c Release -o release --nologo | ||
|
||
- name: Brotli Compress Output (dll) | ||
run: DotNetCompress -d Calc.Browser/bin/Release/net7.0/browser-wasm/AppBundle/managed -p '*.dll' | ||
|
||
- name: Brotli Compress Output (js) | ||
run: DotNetCompress -d Calc.Browser/bin/Release/net7.0/browser-wasm/AppBundle/ -p '*.js' | ||
|
||
- name: Brotli Compress Output (wasm) | ||
run: DotNetCompress -d Calc.Browser/bin/Release/net7.0/browser-wasm/AppBundle/ -p '*.wasm' | ||
|
||
- name: Build And Deploy | ||
id: builddeploy | ||
uses: Azure/static-web-apps-deploy@v1 | ||
with: | ||
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APP_DEPLOY_KEY }} | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) | ||
action: "upload" | ||
###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### | ||
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig | ||
app_location: "Calc.Browser/bin/Release/net7.0/browser-wasm/AppBundle/" # App source code path | ||
api_location: "" # Api source code path - optional | ||
output_location: "" # Modify this to where your SSG places the built HTML - could be `dist`, `build`... check your config | ||
skip_app_build: true | ||
###### End of Repository/Build Configurations ###### |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"routes": [ | ||
{ | ||
"route": "/*", | ||
"headers": { | ||
"Cache-Control": "public, must-revalidate, max-age=2419200" | ||
} | ||
} | ||
] | ||
} |
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
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