Skip to content

update README.md and add images #15

update README.md and add images

update README.md and add images #15

Workflow file for this run

name: CI
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v1
- uses: nuget/setup-nuget@v1
- name: zip libraries
run: |
cd "$Env:GITHUB_WORKSPACE\Libraries\"
7z a -tzip -mx=9 $Env:GITHUB_WORKSPACE\UnderAutomation.Fanuc.zip *
- name: Build Windows Showcase Forms example
run: |
cd $Env:GITHUB_WORKSPACE\UnderAutomation.Fanuc.Showcase.Forms
dotnet publish -p:PublishProfile=FolderProfile
- uses: ncipollo/release-action@v1
with:
artifacts: |
UnderAutomation.Fanuc.zip
**/publish/**/UnderAutomation.Fanuc.Showcase.*.exe"
bodyFile: "whatsNew.md"
token: ${{ secrets.GITHUB_TOKEN }}