We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7abce25 commit 428c0e0Copy full SHA for 428c0e0
2 files changed
.github/workflows/build.yml
@@ -14,6 +14,8 @@ jobs:
14
steps:
15
- name: checkout
16
uses: actions/checkout@v4
17
+ with:
18
+ submodules: false
19
20
- name: setup xcode
21
uses: maxim-lobanov/setup-xcode@v1
@@ -60,9 +62,11 @@ jobs:
60
62
if [ -z "$COMMITS" ]; then
61
63
COMMITS="No commits in the last 12 hours"
64
fi
- echo "COMMITS<<EOF" >> $GITHUB_ENV
- echo "$COMMITS" >> $GITHUB_ENV
65
- echo "EOF" >> $GITHUB_ENV
+ {
66
+ echo "commits<<EOF"
67
+ echo "$COMMITS"
68
+ echo "EOF"
69
+ } >> "$GITHUB_OUTPUT"
70
71
- name: delete old release
72
uses: actions/github-script@v7
@@ -88,7 +92,7 @@ jobs:
88
92
with:
89
93
tag_name: latest
90
94
name: Latest Build
91
- body: ${{ env.COMMITS }}
95
+ body: ${{ steps.commits.outputs.commits }}
96
files: build/lara.ipa
97
env:
98
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments