Skip to content

fix workflow name

fix workflow name #4

Workflow file for this run

name: release-tests
on: [push, pull_request]
jobs:
check-tarball:
steps:

Check failure on line 5 in .github/workflows/release-check.yaml

View workflow run for this annotation

GitHub Actions / release-tests

Invalid workflow file

The workflow is not valid. .github/workflows/release-check.yaml (Line: 5, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: "stable"
override: true
- name: make a release tarball and build from it
run: |
cmake -S. -Bbuild &&
make -Cbuild package_source &&
tar -xf build/task-*.tar.gz &&
cd task-*.*.* &&
cmake -S. -Bbuild &&
make task_executable