Fix actions build #68
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: XMUX macOS | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/macos.yaml | |
- lib/** | |
- macos/** | |
- pubspec.yaml | |
- pubspec.lock | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: beta | |
- name: Build | |
run: | | |
FLUTTER_BUILD_NUMBER=$(git rev-list --count HEAD) | |
GIT_DESC=$(git describe --tags) | |
if [[ $GIT_DESC =~ v([0-9]+)\.([0-9]+)\.([0-9]+)-([0-9]+)-g[a-f0-9]+ ]]; then | |
FLUTTER_BUILD_NAME="${BASH_REMATCH[1]}.$((BASH_REMATCH[2]+1)).${BASH_REMATCH[3]}" | |
else | |
FLUTTER_BUILD_NAME="0.0.1" | |
fi | |
echo $CONFIG_ENV | base64 -d > .env | |
flutter build macos \ | |
--release \ | |
--build-name=$FLUTTER_BUILD_NAME \ | |
--build-number=$FLUTTER_BUILD_NUMBER | |
env: | |
CONFIG_ENV: ${{ secrets.CONFIG_ENV }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: XMUX-macOS | |
path: build/macos/Build/Products/Release/XMUX.app |