Skip to content

Update to new version : 0.2.3.0 #7

Update to new version : 0.2.3.0

Update to new version : 0.2.3.0 #7

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.Yaskawa.zip *
- name: Build Windows Showcase Forms example
run: |
cd $Env:GITHUB_WORKSPACE\UnderAutomation.Yaskawa.Showcase.Forms
dotnet publish -p:PublishProfile=FolderProfile
- uses: ncipollo/release-action@v1
with:
artifacts: |
UnderAutomation.Yaskawa.zip
**/publish/**/UnderAutomation.Yaskawa.Showcase.*.exe
bodyFile: "whatsNew.md"
token: ${{ secrets.GITHUB_TOKEN }}