builder #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: builder | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: | |
workflow_dispatch: | |
# Inputs the workflow accepts. | |
inputs: | |
name: | |
# Friendly description to be shown in the UI instead of 'name' | |
description: 'Person to greet' | |
# Default value if no value is explicitly provided | |
default: 'World' | |
# Input has to be provided for the workflow to run | |
required: true | |
# The data type of the input | |
type: string | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Runs a single command using the runners shell | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: "17" | |
token: ${{secrets.GITHUB_TOKEN}} | |
- name: Flutter action | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.10.3 | |
channel: stable | |
- run: flutter pub get | |
# - name: Build Linux-x64 | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y libmpv-dev mpv clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libunwind-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-setuptools squashfs-tools strace util-linux zsync | |
- run: flutter build linux --release --target-platform linux-x64 | |
- run: rm -rf AppDir || true | |
- run: cp -r build/linux/x64/release/bundle AppDir | |
- run: wget -O appimage-builder-x86_64.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.0.0-beta.1/appimage-builder-1.0.0-677acbd-x86_64.AppImage | |
- run: chmod +x appimage-builder-x86_64.AppImage | |
- run: sudo mv appimage-builder-x86_64.AppImage /usr/local/bin/appimage-builder | |
#- run: appimage-builder --appdir AppDir | |
- run: tar -cvf bili_you.tar AppDir | |
- name: Release Packages | |
uses: ncipollo/release-action@main | |
if: ${{ env.PACKAGED_STATUS }} == 'success' && !cancelled() | |
with: | |
tag: v1.1.5 | |
artifacts: "*.tar" | |
allowUpdates: true | |
removeArtifacts: false | |
replacesArtifacts: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
Test |