Skip to content

Update actions/upload-release-asset action to v1.0.2 #914

Update actions/upload-release-asset action to v1.0.2

Update actions/upload-release-asset action to v1.0.2 #914

Workflow file for this run

name: Main workflow
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
ci:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x" # SDK Version to use (x uses the latest version).
# dotnet restore
- name: restore
run: dotnet restore
# dotnet build and publish
- name: Build with dotnet
run: dotnet build --configuration Release
# dotnet test
- name: test
run: dotnet test