Skip to content

Commit 1953915

Browse files
committed
revise workflows and actions
1 parent 08c8d44 commit 1953915

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/actions/build-and-rename/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
- name: Move artifacts
3838
uses: elehobica/add-identifier@v1
3939
with:
40-
paths: ${{ inputs.build }}
40+
paths: ${{ inputs.path }}/${{ inputs.build }}
4141
exts: .uf2 .elf
4242
identifier: ${{ inputs.identifier }}
4343
output_path: ${{ inputs.output_path }}

.github/workflows/build-binaries.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ jobs:
7474
run: |
7575
if [[ ${{ github.ref_type }} == 'tag' && ${{ github.ref_name }} =~ ^v[0-9]+.[0-9]+.[0-9]+$ ]]; then
7676
echo "matched=true" >> $GITHUB_OUTPUT
77+
echo "Release tag condition matched"
7778
else
7879
echo "matched=false" >> $GITHUB_OUTPUT
80+
echo "Release tag condition not matched"
7981
fi
8082
8183
call-upload-release-asset:

.github/workflows/upload-release-asset.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
gh release create ${{ github.ref_name }} \
4848
--title "Release ${{ github.ref_name }}" \
4949
--notes-file ${{ env.RELEAESE_NOTE}} \
50-
--notes "Changes in this Release\n- 1\n- First Change\n- Second Change" \
5150
--draft \
5251
--target ${{ github.sha }}
5352
- name: Download Artifacts

0 commit comments

Comments
 (0)