chore: update link (#58) #292
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: Release | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
build-server: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./server | |
steps: | |
- uses: rui314/setup-mold@v1 | |
- uses: actions/checkout@v3 | |
- name: 🌱 - Install dependencies | |
run: sudo apt-get update; sudo apt-get install -y libudev-dev libsystemd-dev libusb-1.0-0-dev | |
- name: 🔨 - Build | |
run: cargo build --release | |
- name: 📦 - Copy artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rusty_controller | |
path: server/target/release/rusty_controller | |
build-app: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./app | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: 🌱 - Get dependencies | |
run: flutter pub get | |
- name: 🔨 - Build Apk | |
run: flutter build apk | |
- run: mv build/app/outputs/flutter-apk/app-release.apk ../RustyController.apk | |
- name: 📦 - Copy artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RustyController.apk | |
path: RustyController.apk | |
upload: | |
needs: [build-server, build-app] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 - Copy server artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: rusty_controller | |
- name: 📦 - Copy app artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: RustyController.apk | |
- name: 🌠 - Release | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: "rusty_controller,RustyController.apk" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allowUpdates: true | |
removeArtifacts: true | |
artifactErrorsFailBuild: true | |
prerelease: true | |
name: Latest Pre-release | |
tag: latest |