Skip to content

Commit

Permalink
add ubuntu 24
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenny4 committed Sep 16, 2024
1 parent 4772754 commit ad22386
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,48 @@ jobs:
name: DeepFaceLabClient-${{ steps.currentTag.outputs.tag }}
allowUpdates: true
body: ${{ steps.extract-release-notes.outputs.release_notes }}
release-ubuntu-24:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # https://github.com/marketplace/actions/get-latest-tag
- uses: subosito/flutter-action@v2 # https://github.com/marketplace/actions/flutter-action
with:
channel: 'stable' # or: 'beta', 'dev' or 'master'
- name: Install dependencies
run: flutter pub get
- name: Install build dependencies
run: sudo apt install -y ninja-build libgtk-3-dev
- run: flutter doctor
- name: Get tag for release
id: currentTag
uses: WyriHaximus/github-action-get-previous-tag@v1 # https://github.com/marketplace/actions/get-latest-tag
- name: Build release linux
run: flutter build linux --release
- name: Copy script files
run: |
cp -R script build/linux/x64/release/bundle/script
- name: Copy ldd files
run: |
ldd build/linux/x64/release/bundle/DeepFaceLabClient
mv build/linux/x64/release/bundle DeepFaceLabClient-linux
bash requirements/linux/import_lib.sh
- name: Zip release linux
run: |
zip -r DeepFaceLabClient-ubuntu-24-${{ steps.currentTag.outputs.tag }}.zip DeepFaceLabClient-linux
- name: Extract release notes # https://github.com/marketplace/actions/extract-release-notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v1
- uses: ncipollo/release-action@v1 # https://github.com/marketplace/actions/create-release
with:
artifacts: DeepFaceLabClient-ubuntu-24-${{ steps.currentTag.outputs.tag }}.zip
tag: ${{ steps.currentTag.outputs.tag }}
name: DeepFaceLabClient-${{ steps.currentTag.outputs.tag }}
allowUpdates: true
body: ${{ steps.extract-release-notes.outputs.release_notes }}
release-windows:
runs-on: windows-latest
permissions:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

### Removed

## [0.4.0] - 2023-09-16

### Added

- Add release for ubuntu 24.


## [0.4.0] - 2023-09-16

### Changed
Expand Down

0 comments on commit ad22386

Please sign in to comment.