TAMS MTConnect Version Comparator
ActionsCompares the latest release version of the MTConnect SysML model against the input version string
v1.0
LatestA GitHub Action that can be used to compare the release version of the mtconnect_sysml_model against an input version.
This Action requires that the environment variable GITHUB_TOKEN
be set correctly.
version
: The semantic version that the MTConnect SysML version should be compared against.
update_available
: A boolean flag indicating whether or not there is a newer semantic version of the MTConnect SysML model compared to the providedversion
. Returnstrue
if the SysML model version is newer.
Check every day if the MTConnect SysML model has been updated.
on:
schedule:
- cron: '0 0 * * *' # run every day at midnight UTC
jobs:
check-latest-release:
name: Check latest release of MTConnect SysML model
runs-on: ubuntu-latest
steps:
- name: Compare MTConnect Version
id: mtc_version
uses: mtconnect/compare-version-action@main
with:
version: "v1.1" # In most cases, replace this with a reference to the latest tag from your own repo
- name: Check Update Available
if: ${{ steps.mtc_version.outputs.update_available == false }} # If there is no update, then force this workflow to exit
uses: actions/github-script@v3
with:
script: |
core.setFailed('No new updates to MTConnect SysML model')
build:
needs: check-latest-release # Expects the condition in 'Check Update Available' to have failed, therefore having skipped the set to failure.
name: Build
runs-on: ubuntu-latest
steps:
- name: Do something
run: echo "There appears to be an update, we should do something about that"
TAMS MTConnect Version Comparator is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.