Skip to content

mu

mu #2

Workflow file for this run

on:
push:
branches:
- ci
workflow_dispatch:
name: Test CI
jobs:
test-ci:

Check failure on line 10 in .github/workflows/test-ci.yml

View workflow run for this annotation

GitHub Actions / Test CI

Invalid workflow file

The workflow is not valid. .github/workflows/test-ci.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build Binaries
needs: release
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Create and Upload Native macOS Asset
run: |
rustup target add aarch64-apple-darwin
cargo build --target aarch64-apple-darwin
asset=git-together-${GITHUB_REF#refs/*/}-aarch64-apple-darwin.tar.gz
ls -l
cd target/aarch64-apple-darwin/release
tar -zvc git-together > ${{ github.workspace }}/${asset}