dyna3/.forgejo/setup-trunk/action.yaml
Aaron Fenyes 7f45e98b46 Switch to CircleCI's Rust + Node container image
This should make the `checkout` work on the runner host.
2025-03-27 22:19:54 -07:00

14 lines
No EOL
581 B
YAML

# set up the Trunk web build system
#
# https://trunkrs.dev
#
# the `curl` call is based on David Tolnay's `rust-toolchain` action
#
# https://github.com/dtolnay/rust-toolchain
#
runs:
using: "composite"
steps:
- run: rustup target add wasm32-unknown-unknown
- run: curl --output - --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail 'https://github.com/trunk-rs/trunk/releases/download/v0.21.12/trunk-x86_64-unknown-linux-gnu.tar.gz' | tar --gunzip --extract --file -
working-directory: /home/circleci/.cargo/bin