You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Project templates come equipped with CI/CD for both Azure DevOps and GitHub, providing you with a hassle-free way to get started with your new project. It is important to note that you should not depend on the contents of this file. More info at https://bitplatform.dev/templates/dev-ops
4
+
5
+
env:
6
+
SERVER_ADDRESS: 'https://sales.bitplatform.dev'
7
+
8
+
on:
9
+
workflow_dispatch:
10
+
push:
11
+
branches: [ "main" ]
12
+
13
+
permissions:
14
+
contents: read
15
+
16
+
jobs:
17
+
18
+
build_api_blazor:
19
+
name: build api + blazor web
20
+
runs-on: ubuntu-24.04
21
+
22
+
steps:
23
+
24
+
- name: Checkout source code
25
+
uses: actions/checkout@v4
26
+
27
+
- name: Setup .NET
28
+
uses: actions/setup-dotnet@v4
29
+
with:
30
+
global-json-file: src/global.json
31
+
32
+
- uses: actions/setup-node@v4
33
+
with:
34
+
node-version: 23
35
+
36
+
- name: Create project from Boilerplate
37
+
run: |
38
+
cd src/Templates/Boilerplate && dotnet build -c Release
sed -i 's/\/\/ self.disablePassiveFirstBoot/self.disablePassiveFirstBoot/g' SalesModule/src/Client/SalesModule.Client.Web/wwwroot/service-worker.published.js
0 commit comments