File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,20 @@ jobs:
1818 uses : actions/checkout@v3
1919 with :
2020 fetch-depth : 2
21- - name : Build release image
21+ - name : Build esp32 binary
2222 run : |
2323 bash -c 'export MICRO_RDK_USE_NVS=true && . "$IDF_PATH"/export.sh && . "$ESP_ROOT"/export-esp.sh && make build-esp32-with-cred-bin'
2424 cp examples/target/esp32-server-with-cred.bin micro-rdk-esp32-server.bin
2525 sha256sum micro-rdk-esp32-server.bin >> sha256sums.txt
26- - name : Check if RC release
26+ - name : Check release type
2727 id : check-tag
2828 run : |
2929 if echo ${{ github.event.ref }} | grep -Eq '^refs/tags/v.*rc[0-9]{1}$'; then
3030 echo "match=true" >> $GITHUB_OUTPUT
3131 else
3232 echo "match=false" >> $GITHUB_OUTPUT
3333 fi
34- - name : Pre- release binary
34+ - name : Publish release candidate
3535 if : steps.check-tag.outputs.match == 'true'
3636 uses : marvinpinto/action-automatic-releases@latest
3737 with :
4040 micro-rdk-esp32-server.bin
4141 sha256sums.txt
4242 prerelease : true
43- - name : Release binary
43+ - name : Publish release
4444 if : steps.check-tag.outputs.match == 'false'
4545 uses : marvinpinto/action-automatic-releases@latest
4646 with :
You can’t perform that action at this time.
0 commit comments