Skip to content

Commit 528400a

Browse files
committed
fix: deprecated ci action and minor typo
Signed-off-by: Luca Marchiori <luca.marchiori@secomind.com>
1 parent d821f53 commit 528400a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Load artifacts obtained with the most recent version of Go
4444
- name: Upload build artifacts
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
if: matrix.go == '1.20.x'
4747
with:
4848
path: astartectl*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Generally speaking, one of those could be written like
7272
```
7373
or, for aggregated interfaces, like a json object:
7474
```
75-
astartectl appengine devices publish-datastream 2TBn-jNESuuHamE2Zo1anA com.my.interface.aggregated /my/path '{"path1": "value2","path2":"value2"}'
75+
astartectl appengine devices publish-datastream 2TBn-jNESuuHamE2Zo1anA com.my.interface.aggregated /my/path '{"path1":"value1","path2":"value2"}'
7676
```
7777

7878
Please note, "value" is whatever your raw value is, no encapsulation whatsoever is required by astarte or astartectl (but you can provide your own, if you need it).
7979
Exceptions follow:
8080
- arrays are written like ["value", "anothervalue"] (depending on your shell, this can also be "['value', 'anothervalue']", please check before using in a production env)
8181
- aggregates values could be anything accepted by astarte, in case of arrays they follow the above rule
8282
- binaryblobs must be base64 encoded
83-
- datetime is based on an external library that is flexible enough to translate a fairly high number of different formats, further documentation and supported formats can be found [here](https://github.com/araddon/dateparse)
83+
- datetime is based on an external library that is flexible enough to translate a fairly high number of different formats, further documentation and supported formats can be found [here](https://github.com/araddon/dateparse)

0 commit comments

Comments
 (0)