Skip to content

Commit 54b5c1b

Browse files
committed
github action bug fixed.
1 parent 6c70ed0 commit 54b5c1b

File tree

3 files changed

+6
-46
lines changed

3 files changed

+6
-46
lines changed

.github/workflows/debug-app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ATSY Cast Release Building
1+
name: ATSY Cast Debug Building
22

33
on:
44
push:
@@ -24,7 +24,7 @@ jobs:
2424
- name: Notify to Developer
2525
uses: wei/curl@v1
2626
with:
27-
args: curl -G ${{ secrets.TELEGRAM_BOT_URL }} --data-urlencode 'message=ATSY Cast Version - ${{ env.RELEASE_VERSION }} Debug Build Start'
27+
args: curl -G ${{ secrets.TELEGRAM_BOT_URL }} --data-urlencode 'message=ATSY Cast Version - ${{ env.RELEASE_VERSION }} Build Start'
2828

2929
build_release:
3030

@@ -46,7 +46,7 @@ jobs:
4646
- run: touch debug-keystore.jks
4747
- run: echo $DEBUG_KEYSTORE_BASE64 | base64 --decode > debug-keystore.jks
4848
- run: touch tv/google-services.json
49-
- run: echo $DEBUG_PLAY_SERVICE_BASE64 | base64 --dcode > tv/google-services.json
49+
- run: echo $DEBUG_PLAY_SERVICE_BASE64 | base64 --decode > tv/google-services.json
5050

5151
- name: Tag Version
5252
run: |

.github/workflows/home-app.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ATSY Cast Release Building
1+
name: ATSY Cast Home Building
22

33
on:
44
push:
@@ -7,28 +7,8 @@ on:
77

88
jobs:
99

10-
build_start:
11-
12-
name: Build Home Start
13-
runs-on: ubuntu-latest
14-
15-
steps:
16-
17-
- name: Check Out Branch
18-
uses: actions/checkout@v2.3.4
19-
20-
- name: Tag Version
21-
run: |
22-
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
23-
24-
- name: Notify to Developer
25-
uses: wei/curl@v1
26-
with:
27-
args: curl -G ${{ secrets.TELEGRAM_BOT_URL }} --data-urlencode 'message=ATSY Cast Version - ${{ env.RELEASE_VERSION }} Home Build Start'
28-
2910
build_release:
3011

31-
needs: build_start
3212
name: Build Debug
3313
runs-on: ubuntu-18.04
3414
env:
@@ -46,7 +26,7 @@ jobs:
4626
- run: touch release-keystore.jks
4727
- run: echo $RELEASE_KEYSTORE_BASE64 | base64 --decode > release-keystore.jks
4828
- run: touch tv/google-services.json
49-
- run: echo $HOME_PLAY_SERVICE_BASE64 | base64 --dcode > tv/google-services.json
29+
- run: echo $HOME_PLAY_SERVICE_BASE64 | base64 --decode > tv/google-services.json
5030

5131
- name: Tag Version
5232
run: |

.github/workflows/release-app.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,8 @@ on:
77

88
jobs:
99

10-
build_start:
11-
12-
name: Build Release Start
13-
runs-on: ubuntu-latest
14-
15-
steps:
16-
17-
- name: Check Out Branch
18-
uses: actions/checkout@v2.3.4
19-
20-
- name: Tag Version
21-
run: |
22-
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
23-
24-
- name: Notify to Developer
25-
uses: wei/curl@v1
26-
with:
27-
args: curl -G ${{ secrets.TELEGRAM_BOT_URL }} --data-urlencode 'message=ATSY Cast Version - ${{ env.RELEASE_VERSION }} Release Build Start'
28-
2910
build_release:
3011

31-
needs: build_start
3212
name: Build Release
3313
runs-on: ubuntu-18.04
3414
env:
@@ -46,7 +26,7 @@ jobs:
4626
- run: touch release-keystore.jks
4727
- run: echo $RELEASE_KEYSTORE_BASE64 | base64 --decode > release-keystore.jks
4828
- run: touch tv/google-services.json
49-
- run: echo $RELEASE_PLAY_SERVICE_BASE64 | base64 --dcode > tv/google-services.json
29+
- run: echo $RELEASE_PLAY_SERVICE_BASE64 | base64 --decode > tv/google-services.json
5030

5131
- name: Tag Version
5232
run: |

0 commit comments

Comments
 (0)