Skip to content

Commit

Permalink
Merge pull request #15 from simatic-ax/fix_ci_workflow
Browse files Browse the repository at this point in the history
fix: add release workflow
  • Loading branch information
sjuergen authored Feb 6, 2023
2 parents 8bc3dc5 + 405d815 commit 5e807c8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release-applicationexample.yml
Original file line number Diff line number Diff line change
@@ -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
10 changes: 4 additions & 6 deletions apax.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 1 addition & 3 deletions src/JsonSerializer/JsonStructure.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
USING Simatic.Ax.Json;
USING Simatic.Ax.Json;
USING Simatic.Ax.StateFramework;

NAMESPACE Simatic.Ax.Tiax

Expand Down Expand Up @@ -57,4 +55,4 @@ NAMESPACE Simatic.Ax.Tiax
END_IF;
END_FUNCTION_BLOCK

END_NAMESPACE
END_NAMESPACE

0 comments on commit 5e807c8

Please sign in to comment.