dyna3/.forgejo/setup-trunk/action.yaml
Glen Whitney 80a4acd56a
Some checks failed
/ test (pull_request) Failing after 1m21s
test: check path at end of setup-trunk
2025-04-01 19:23:39 -07:00

18 lines
726 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
# Assume we remain in the top-level directory of the checkout:
- run: mkdir -p ci-bin
- 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: ci-bin
- run: export PATH="$(pwd)/ci-bin:$PATH"
- run: echo "$PATH"