This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
Fix issue #237 for write OPC UA nodes #1661
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check-release-workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, reopened, edited] | |
push: | |
branches: | |
- master | |
jobs: | |
Check-release: | |
runs-on: windows-latest | |
if: contains(github.event.pull_request.body, 'The workflow check-release was intentionally skipped.') == false | |
steps: | |
- uses: actions/checkout@master | |
- name: Set timestamp | |
id: setTimestamp | |
run: | | |
$timestamp = [DateTime]::UtcNow.ToString("yyyy-MM-ddTHH-mm-ssZ") | |
Write-Output "::set-output name=timestamp::$timestamp" | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1.0.0 | |
with: | |
vs-version: 15 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.0.2 | |
- name: Install .NET core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Install build dependencies | |
working-directory: src | |
run: powershell .\InstallBuildDependencies.ps1 | |
- name: Build for release | |
working-directory: src | |
run: powershell .\BuildForRelease.ps1 | |
- name: Package | |
working-directory: src | |
run: powershell .\PackageRelease.ps1 -version LATEST.alpha | |
- name: Upload latest | |
continue-on-error: true | |
uses: actions/upload-artifact@v2 | |
with: | |
name: aasx-package-explorer.LATEST.alpha.${{ steps.setTimestamp.outputs.timestamp }} | |
path: artefacts/release/LATEST.alpha/aasx-package-explorer.zip | |
- name: Upload latest small | |
continue-on-error: true | |
uses: actions/upload-artifact@v2 | |
with: | |
name: aasx-package-explorer-small.LATEST.alpha.${{ steps.setTimestamp.outputs.timestamp }} | |
path: artefacts/release/LATEST.alpha/aasx-package-explorer-small.zip |