File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 23
23
variant : [ gnome ]
24
24
architecture : [ amd64 ] # only amd64 for fast builds
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v4
27
27
with :
28
28
submodules : recursive
29
29
- uses : docker/setup-qemu-action@v2
49
49
needs : suite-build
50
50
51
51
steps :
52
- - uses : actions/checkout@v3
52
+ - uses : actions/checkout@v4
53
53
with :
54
54
token : ${{ secrets.GITHUB_TOKEN }}
55
55
@@ -61,19 +61,19 @@ jobs:
61
61
udroid_version=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' \
62
62
https://github.com/RandomCoderOrg/ubuntu-on-android \
63
63
| tail -n1 | cut -d / -f 3 | cut -d v -f 2- )
64
-
64
+
65
65
latest_tag=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' \
66
66
https://github.com/RandomCoderOrg/udroid-download \
67
67
| tail -n1 | cut -d / -f 3)
68
-
68
+
69
69
if [[ $latest_tag =~ R([0-9]+)$ ]]; then
70
70
current_release=${BASH_REMATCH[1]}
71
71
else
72
72
current_release=0
73
73
fi
74
-
74
+
75
75
next_release=$((current_release + 1))
76
-
76
+
77
77
echo "VERSIONTAG=V${udroid_version}R${next_release}" >> $GITHUB_ENV
78
78
79
79
- name : 📝 Generate Release Notes
Original file line number Diff line number Diff line change 17
17
outputs :
18
18
matrix : ${{ steps.set-matrix.outputs.matrix }}
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
with :
22
22
submodules : recursive
23
23
- name : Generate Matrix JSON
33
33
matrix : ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
34
34
35
35
steps :
36
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
37
37
with :
38
38
submodules : recursive
39
39
- name : ⤵️ Install Dependencies
56
56
needs : suite-build
57
57
58
58
steps :
59
- - uses : actions/checkout@v3
59
+ - uses : actions/checkout@v4
60
60
with :
61
61
token : ${{ secrets.GITHUB_TOKEN }}
62
62
- name : 📥 Download All Tarballs
@@ -67,19 +67,19 @@ jobs:
67
67
udroid_version=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' \
68
68
https://github.com/RandomCoderOrg/ubuntu-on-android \
69
69
| tail -n1 | cut -d / -f 3 | cut -d v -f 2- )
70
-
70
+
71
71
latest_tag=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' \
72
72
https://github.com/RandomCoderOrg/udroid-download \
73
73
| tail -n1 | cut -d / -f 3)
74
-
74
+
75
75
if [[ $latest_tag =~ R([0-9]+)$ ]]; then
76
76
current_release=${BASH_REMATCH[1]}
77
77
else
78
78
current_release=0
79
79
fi
80
-
80
+
81
81
next_release=$((current_release + 1))
82
-
82
+
83
83
echo "VERSIONTAG=V${udroid_version}R${next_release}" >> $GITHUB_ENV
84
84
85
85
- name : 📝 Generate Release Notes
You can’t perform that action at this time.
0 commit comments