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