mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-20 22:28:08 -05:00
* Migrate `get-next-package-version.js` to TypeScript * Add release notes * Stronger type check * Fix step ordering * Fix typo * Fix missed ordering
9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
cd ../../
|
|
|
|
script="$1"
|
|
shift
|
|
exec node --import=extensionless/register --experimental-strip-types packages/ci-actions/"$script" "$@"
|