Skip to content

Add CI to create zip archives of each Sample. #2

Add CI to create zip archives of each Sample.

Add CI to create zip archives of each Sample. #2

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "3.8.2" ]
pull_request:
branches: [ "3.8.2" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Archive Tutorial/BasicCameraExample
uses: actions/upload-artifact@v4
with:
name: BasicCameraExample
path: Tutorials/BasicCameraExample/**
- name: Archive ShipGame
uses: actions/upload-artifact@v4
with:
name: ShipGame
path: ShipGame/**