Skip to content

Commit 3476a7a

Browse files
authored
Merge pull request #23 from simatic-ax/update_sdk
add some improvements for the template
2 parents ee870a1 + 372d709 commit 3476a7a

File tree

9 files changed

+140
-238
lines changed

9 files changed

+140
-238
lines changed

template/.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
# `.gitattributes` reclassify `.st` files as iec-st:
22
** linguist-vendored
3-
# *.ppjs linguist-language=ST

template/.github/workflows/github-action-release-ae.yml

Lines changed: 0 additions & 116 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
on: push
2+
jobs:
3+
lint-repo-and-markdown:
4+
uses: simatic-ax/actions/.github/workflows/check-repository.yml@stable

template/.github/workflows/lint.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
# Pattern matched against refs/tags
4+
tags:
5+
- "*"
6+
7+
jobs:
8+
release-apax-lib:
9+
uses: simatic-ax/actions/.github/workflows/apax-publish-applicationexample.yml@stable
10+
secrets:
11+
APAX_TOKEN: ${{ secrets.APAX_TOKEN }}
12+
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
13+
14+
with:
15+
VERSION: ${{ github.ref_name }}
16+
PROJECT_NAME: ae-trafficlight

template/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
bin
44
obj
55
testresult
6-
./apax-lock.json

template/apax-files-section.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# this files section will be used for the github workflow
2+
# the apax.yml will be created dynamically in the workflow - also the files section
3+
# here you can define the content
4+
5+
files:
6+
- template
7+
- '!**/.git'
8+
- '!**/.vscode'
9+
- '!**/.github'
10+
- '!**/.gitattributes'
11+
- '!**/.markdownlint.yml'
12+
- '!template/CODEOWNERS'
13+
- '!template/apax-files-section.yml'

0 commit comments

Comments
 (0)