Skip to content

Build Desktop Release #3

Build Desktop Release

Build Desktop Release #3

Workflow file for this run

name: Build Desktop Release
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: workflow_dispatch
jobs:
build-macOS:
runs-on: macos-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter build macos --release
- name: Upload the build
uses: actions/upload-artifact@v4.3.3
with:
name: ibmq-macos
path: build/macos/Build/Products/Release/ibmq.app
build-linux:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- run: flutter build linux --release
- name: Upload the build
uses: actions/upload-artifact@v4.3.3
with:
name: ibmq-linux
path: build/linux/x64/release/bundle