Skip to content

Commit

Permalink
fix(build): android pkg name
Browse files Browse the repository at this point in the history
Signed-off-by: Jiyong Huang <huangjy@emqx.io>
  • Loading branch information
ngjaying committed Oct 19, 2023
1 parent 50c33d8 commit 1f8bbb3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,10 @@ jobs:
run: |
ver=$(git describe --tags --always)
cd app
fyne package -os android/arm64 -name ekuiper -metadata version=$ver -release -appID gh.neting.cc.lfedge.ekuiper -icon icon.png || true
fyne package -os android/arm64 -name kuiper-$ver -metadata version=$ver -release -appID gh.neting.cc.lfedge.ekuiper -icon icon.png || true
mkdir -p ../_packages
mv ekuiper.apk ../_packages/
# The version name will be modified by fyne package, convert . and - to _
mv kuiper* ../_packages/
cd ../_packages && for var in $(ls); do echo $(sha256sum $var | awk '{print $1}') > $var.sha256; done && cd -
- uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -401,7 +402,7 @@ jobs:
if: github.event_name == 'release'
with:
repo: ekuiper
path: "_packages/kuiper-*"
path: "_packages/kuiper*"
token: ${{ secrets.GITHUB_TOKEN }}
- name: upload packages to s3
if: github.event_name == 'release'
Expand Down

0 comments on commit 1f8bbb3

Please sign in to comment.