Skip to content

πŸ‘©β€πŸ’» Move build steps to shared actions #10

πŸ‘©β€πŸ’» Move build steps to shared actions

πŸ‘©β€πŸ’» Move build steps to shared actions #10

Workflow file for this run

name: Build Dart Shared Library
on:
push:
branches:
- main
pull_request:
jobs:
build_windows:
runs-on: [windows-latest]
env:
DEPOT_TOOLS_WIN_TOOLCHAIN: 0
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-action
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: windows-libs
path: ./build/src/Release/
build_linux:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-action
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: linux-libs
path: ./build/src/Release/