From 7256107242016062966dfac27f0532f9d8d1c711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Mon, 6 Feb 2023 19:23:57 +0100 Subject: [PATCH 1/3] cleanup st file --- src/JsonSerializer/JsonStructure.st | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/JsonSerializer/JsonStructure.st b/src/JsonSerializer/JsonStructure.st index ee3ad48..bd0c959 100644 --- a/src/JsonSerializer/JsonStructure.st +++ b/src/JsonSerializer/JsonStructure.st @@ -1,6 +1,4 @@ USING Simatic.Ax.Json; -USING Simatic.Ax.Json; -USING Simatic.Ax.StateFramework; NAMESPACE Simatic.Ax.Tiax @@ -57,4 +55,4 @@ NAMESPACE Simatic.Ax.Tiax END_IF; END_FUNCTION_BLOCK -END_NAMESPACE +END_NAMESPACE \ No newline at end of file From dee637208ae9ac7f032c20b124d98b9f781d9e9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Mon, 6 Feb 2023 19:27:47 +0100 Subject: [PATCH 2/3] update dependencies --- apax.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/apax.yml b/apax.yml index 1863b5c..982295a 100644 --- a/apax.yml +++ b/apax.yml @@ -1,16 +1,14 @@ name: "apax-package-name-d7b4b031" -version: 0.0.0-replace-in-pipeline +version: 1.0.0 type: lib targets: - "1500" # - axunit-llvm dependencies: - "@ax/system-strings": 4.1.43 - "@ax/system-math": 3.1.7 - "@simatic-ax/json": 4.1.1 - "@simatic-ax/statemachine": 2.1.0 + "@simatic-ax/json": 4.1.2 + "@simatic-ax/statemachine": 2.1.1 devDependencies: - "@ax/sdk": 3.0.8 + "@ax/sdk": 3.0.10 "@ax/ax2tia": 4.2.10 "@simatic-ax/snippetscollection": 0.0.15 variables: From 405d8155867b8b1c21e2784af4d142c64fa1dccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Mon, 6 Feb 2023 21:56:50 +0100 Subject: [PATCH 3/3] release workflow --- .github/workflows/release-applicationexample.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/release-applicationexample.yml diff --git a/.github/workflows/release-applicationexample.yml b/.github/workflows/release-applicationexample.yml new file mode 100644 index 0000000..ac5f829 --- /dev/null +++ b/.github/workflows/release-applicationexample.yml @@ -0,0 +1,16 @@ +on: + push: + # Pattern matched against refs/tags + tags: + - "*" + +jobs: + release-apax-lib: + uses: simatic-ax/actions/.github/workflows/apax-publish-template.yml@stable + secrets: + APAX_TOKEN: ${{ secrets.APAX_TOKEN }} + DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} + + with: + VERSION: ${{ github.ref_name }} + PROJECT_NAME: ae-actions-test \ No newline at end of file