File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ concurrency:
16
16
17
17
jobs :
18
18
info :
19
- name : Project Info
19
+ name : 🖥️ Project Info
20
20
runs-on : ubuntu-latest
21
21
outputs :
22
22
project_version : ${{ steps.project_version.outputs.tag }}
29
29
exists : ${{ steps.check_tag.outputs.exists }}
30
30
31
31
steps :
32
- - name : Checkout
32
+ - name : 📁 Checkout
33
33
34
34
with :
35
35
fetch-depth : 0
70
70
id : check_pakku_lock_prev
71
71
shell : bash
72
72
run : |
73
- if ! git ls-tree -r ${latest_tag } -- ./pakku-lock.json &> /dev/null; then
73
+ if ! git ls-tree -r ${{ steps.get_latest_tag.outputs.value } } -- ./pakku-lock.json &> /dev/null; then
74
74
echo "❌ File pakku-lock.json not found in previous tag" && exit 1
75
75
else
76
76
echo "✔️ File pakku-lock.json found in previous tag"
80
80
id : copy_pakku_lock_prev
81
81
shell : bash
82
82
run : |
83
- git show tags/$latest_tag :./pakku-lock.json > ./pakku-lock-prev.json
83
+ git show tags/${{ steps.get_latest_tag.outputs.value }} :./pakku-lock.json > ./pakku-lock-prev.json
84
84
if [ -s ./pakku-lock-prev.json ]; then
85
85
echo "✔️ File pakku-lock-prev.json created"
86
86
else
You can’t perform that action at this time.
0 commit comments