mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 13:01:12 +03:00
19 lines
No EOL
376 B
YAML
19 lines
No EOL
376 B
YAML
name: Install dependencies
|
|
description: Installs Zig and cargo-zigbuild
|
|
|
|
inputs:
|
|
zig-version:
|
|
description: Version of Zig to install
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
|
|
- name: Install Zig
|
|
uses: mlugg/setup-zig@v2
|
|
with:
|
|
version: ${{ inputs.zig-version }}
|
|
|
|
- name: Install cargo-zigbuild
|
|
shell: sh
|
|
run: cargo install cargo-zigbuild |