2019-04-17 00:17:39 -05:00
|
|
|
#!/bin/bash
|
2023-01-19 16:53:05 -05:00
|
|
|
# get the last published tag
|
2019-04-17 00:17:39 -05:00
|
|
|
lastTag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
2023-01-19 16:53:05 -05:00
|
|
|
yarn ts-node scripts/trigger-release.ts $lastTag
|