Skip to content

Commit

Permalink
fixing pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
krjw-eyev committed Sep 30, 2024
1 parent 7fba4c2 commit 8bfcf2a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/github-actions-release-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: 'build/app/outputs/apk/release/skyle_ik-android.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '2.0.0'
commit: main
allowUpdates: true
1 change: 0 additions & 1 deletion .github/workflows/github-actions-release-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: 'build/ios/iphoneos/skyle_ik-ios.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '2.0.0'
commit: main
allowUpdates: true
3 changes: 1 addition & 2 deletions .github/workflows/github-actions-release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
channel: 'stable'
cache: true
- name: Install dependencies
run: sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-0 libblkid1 liblzma5 libgtk-3-dev liblzma-dev
run: sudo apt-get install -y clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev curl unzip xz-utils zip libglu1-mesa
- run: flutter build linux --release

- name: Archive Release
Expand All @@ -34,7 +34,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: 'build/linux/x64/release/bundle/skyle_ik-linux.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '2.0.0'
commit: main
allowUpdates: true
3 changes: 1 addition & 2 deletions .github/workflows/github-actions-release-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
Expand All @@ -33,7 +33,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: 'build/macos/Build/Products/Release/skyle_ik-macos/skyle_ik-macos.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '2.0.0'
commit: main
allowUpdates: true
7 changes: 3 additions & 4 deletions .github/workflows/github-actions-release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
Expand All @@ -26,13 +26,12 @@ jobs:
with:
type: 'zip'
filename: skyle_ik-windows.zip
directory: build/windows/runner/Release
directory: build/windows/x64/runner/Release

- name: Create Github Release
uses: ncipollo/release-action@v1
with:
artifacts: 'build/windows/runner/Release/skyle_ik-windows.zip'
token: ${{ secrets.RELEASES_TOKEN }}
artifacts: 'build/windows/x64/runner/Release/skyle_ik-windows.zip'
tag: '2.0.0'
commit: main
allowUpdates: true
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_version = '2.0.20'
repositories {
google()
mavenCentral()
Expand Down

0 comments on commit 8bfcf2a

Please sign in to comment.