@@ -46,25 +46,27 @@ jobs:
46
46
# Unzip the package because Upload Artifact will zip up the files
47
47
- name : Unzip DFU package
48
48
run : unzip ./build/output/pinetime-mcuboot-app-dfu-*.zip -d ./build/output/pinetime-mcuboot-app-dfu
49
+ - name : Set ref_name, but replace slashes with dashes.
50
+ run : echo "REF_NAME=${${{github.ref_name}}////-}" >> $GITHUB_ENV
49
51
- name : Upload DFU artifacts
50
52
uses : actions/upload-artifact@v3
51
53
with :
52
- name : InfiniTime DFU ${{ github.head_ref }}
54
+ name : InfiniTime DFU ${{ env.REF_NAME }}
53
55
path : ./build/output/pinetime-mcuboot-app-dfu/*
54
56
- name : Upload MCUBoot image artifacts
55
57
uses : actions/upload-artifact@v3
56
58
with :
57
- name : InfiniTime MCUBoot image ${{ github.head_ref }}
59
+ name : InfiniTime MCUBoot image ${{ env.REF_NAME }}
58
60
path : ./build/output/pinetime-mcuboot-app-image-*.bin
59
61
- name : Upload standalone ELF artifacts
60
62
uses : actions/upload-artifact@v3
61
63
with :
62
- name : InfiniTime image ${{ github.head_ref }}
64
+ name : InfiniTime image ${{ env.REF_NAME }}
63
65
path : ./build/output/src/pinetime-app-*.out
64
66
- name : Upload resources artifacts
65
67
uses : actions/upload-artifact@v3
66
68
with :
67
- name : InfiniTime resources ${{ github.head_ref }}
69
+ name : InfiniTime resources ${{ env.REF_NAME }}
68
70
path : ./build/output/infinitime-resources-*.zip
69
71
70
72
build-simulator :
@@ -105,7 +107,7 @@ jobs:
105
107
- name : Upload simulator executable
106
108
uses : actions/upload-artifact@v3
107
109
with :
108
- name : infinisim-${{ github.head_ref }}
110
+ name : infinisim-${{ env.REF_NAME }}
109
111
path : build_lv_sim/infinisim
110
112
111
113
get-base-ref-size :
0 commit comments