We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af26014 commit 983c7fdCopy full SHA for 983c7fd
.github/workflows/build.yml
@@ -85,11 +85,12 @@ jobs:
85
cat app/VERSION
86
87
- name: Set MEMFAULT_FW_TYPE and MEMFAULT_FW_VERSION_PREFIX
88
+ shell: bash
89
run: |
- if [ -z "${{ inputs.memfault_sw_type }}" ]; then
90
+ if [[ -z "${{ inputs.memfault_fw_type }}" ]]; then
91
echo "MEMFAULT_FW_TYPE=asset-tracker-template-dev" >> $GITHUB_ENV
92
else
- echo "MEMFAULT_FW_TYPE=${{ inputs.memfault_sw_type }}" >> $GITHUB_ENV
93
+ echo "MEMFAULT_FW_TYPE=${{ inputs.memfault_fw_type }}" >> $GITHUB_ENV
94
fi
95
96
if [[ "${{ startsWith(github.ref, 'refs/tags/') }}" == "true" ]]; then
0 commit comments