Skip to content

Commit

Permalink
[Fix] deparecated set-outputs
Browse files Browse the repository at this point in the history
[Test] remove zh of iss
  • Loading branch information
canxin121 committed Sep 28, 2024
1 parent 9b88613 commit 26bacf2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build_ios_ipa.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build Ios Ipa
name: Build Ios Ipa
on:
workflow_dispatch:

jobs:
get_version:
runs-on: ubuntu-latest
Expand All @@ -18,10 +18,10 @@ jobs:
run: |
sudo snap install yq
app_version=$(yq eval '.version' pubspec.yaml)
echo "::set-output name=app_version::$app_version"
echo "app_version=$app_version" >> $GITHUB_ENV
build_and_push:
name: Build and Push Ios Ipa
name: Build and Push Ios Ipa
needs: get_version
runs-on: macos-latest
steps:
Expand All @@ -36,7 +36,7 @@ jobs:
SOME_REPLACE_KEY: ${{ secrets.SOME_REPLACE_KEY }}
SOME_REPLACE_FILE: ${{ secrets.SOME_REPLACE_FILE }}
run: |
chmod a+x tools/key_replace_macox_unknown
chmod a+x tools/key_replace_macox_unknown
tools/key_replace_macox_unknown
- name: Install Rust
Expand All @@ -45,9 +45,9 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
channel: stable

- name: Flutter Build Ios
- name: Flutter Build Ios
run: |-
flutter build ios --release --no-codesign --verbose
Expand All @@ -65,6 +65,6 @@ jobs:
- name: Upload AppImage Package
uses: actions/upload-artifact@v4
with:
name: AppRhyme_ios_unknown_${{ needs.get_version.outputs.app_version }}_ipa
path: AppRhyme_ios_unknown_${{ needs.get_version.outputs.app_version }}.ipa
compression-level: 9
name: AppRhyme_ios_unknown_${{ needs.get_version.outputs.app_version }}_ipa
path: AppRhyme_ios_unknown_${{ needs.get_version.outputs.app_version }}.ipa
compression-level: 9
4 changes: 2 additions & 2 deletions .github/workflows/build_macos_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true

- name: Fetch Version
id: fetch_version
run: |
sudo snap install yq
app_version=$(yq eval '.version' pubspec.yaml)
echo "::set-output name=app_version::$app_version"
echo "app_version=$app_version" >> $GITHUB_ENV
build_and_push:
name: Build and Push Macos Packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_windows_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
run: |
sudo snap install yq
app_version=$(yq eval '.version' pubspec.yaml)
echo "::set-output name=app_version::$app_version"
echo "app_version=$app_version" >> $GITHUB_ENV
build_and_push:
name: Build and Push Windows Packages
needs: get_version
Expand Down
2 changes: 1 addition & 1 deletion windows/packaging/exe/make_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ display_name: AppRhyme
create_desktop_icon: true
install_dir_name: AppRhyme
locales:
- zh
- en

0 comments on commit 26bacf2

Please sign in to comment.