Skip to content

Bump actions/upload-artifact from 6 to 7 in the actions group #103

Bump actions/upload-artifact from 6 to 7 in the actions group

Bump actions/upload-artifact from 6 to 7 in the actions group #103

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@v7
with:
name: wasm-client
path: ./publish