Skip to content

Bump the web group with 3 updates #95

Bump the web group with 3 updates

Bump the web group with 3 updates #95

Workflow file for this run

name: Build Client Artifact
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
client:
name: Build Client
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Build
run: |
cd BlazorWasmOsmOauth
dotnet publish BlazorWasmOsmOauth.csproj --configuration Release --property PublishDir=../publish/
cd ..
- name: Upload Build Artifact
uses: actions/upload-artifact@v6
with:
name: wasm-client
path: ./publish