feat(cli): add windows check to not use xwin in windows os #7
Workflow file for this run
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: Publish Release | |
on: | |
push: | |
tags: | |
- "*" | |
permissions: | |
contents: write | |
jobs: | |
build_libraries: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
platforms: linux | |
- os: ubuntu-latest | |
platforms: android | |
- os: windows-latest | |
platforms: windows | |
- os: macos-latest | |
platforms: ios | |
- os: macos-latest | |
platforms: macos | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v2 | |
- uses: goto-bus-stop/setup-zig@v2 | |
if: ${{ matrix.platforms == 'linux' }} | |
- uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "15" | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- uses: nttld/setup-ndk@v1 | |
if: ${{ matrix.platforms == 'android' }} | |
with: | |
ndk-version: r25b | |
- name: Extract project name | |
id: extract | |
run: | | |
PROJECT_NAME=$(dart cli/main.dart project_name ${{ github.ref_name }}) | |
echo "PROJECT_NAME=$PROJECT_NAME" >> $GITHUB_ENV | |
shell: bash | |
- name: Build all library binaries | |
run: | | |
dart cli/main.dart ${{ matrix.platforms }} -p ${{ env.PROJECT_NAME }} | |
shell: bash | |
- name: Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Libraries | |
path: platform-build/ | |
release: | |
runs-on: ubuntu-latest | |
needs: build_libraries | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: Libraries | |
path: platform-build/ | |
- name: Create GitHub release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: platform-build/** |