Skip to content

Commit

Permalink
15.3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
chivehao committed Aug 31, 2024
1 parent fd468b9 commit 949b722
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci_build_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,13 @@ jobs:
- name: Build Linux App Bundle
run: flutter build linux --release -v

- name: Set environment variables
run: |
APP_NAME=$(find build/linux/x64/release/bundle -name "*.out" -exec basename {} .out \;)
echo "APP_NAME=$APP_NAME" >> $GITHUB_ENV
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Create a tarball
env:
APP_NAME: $(find build/linux/x64/release/bundle -name "*.out" -exec basename {} .out \;)
VERSION: ${{ github.ref_name }}
run: |
mkdir -p build/linux/x64/release/${{ env.APP_NAME }}
cp -r build/linux/x64/release/bundle/* build/linux/x64/release/${{ env.APP_NAME }}/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。

# 15.3.18

- 修复linux包构建时的问题

# 15.3.17

- 修复linux包构建时的问题
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ikaros
description: ikaros app by flutter
version: 15.3.17
version: 15.3.18

environment:
sdk: '>=2.18.4 <=3.10.5'
Expand Down

0 comments on commit 949b722

Please sign in to comment.