Skip to content

fix branch name

fix branch name #1

Workflow file for this run

name: Open Words Release
on:
push:
branches: ["test-release"]
tags: "*"
jobs:
publish:
permissions: write-all
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-latest
artifact_name: Release
asset_name: open-words-win-x64
asset_path: build/windows/x64/runner
build_command: flutter build windows --release
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- run: flutter --version
- run: flutter pub get
- name: Build
run: ${{ matrix.build_command }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ matrix.asset_path }}/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}