mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-21 07:29:37 +01:00
5 lines
171 B
Bash
Executable File
5 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
# Get the last tag from GitHub
|
|
lastTag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
yarn ts-node scripts/trigger-release.ts $lastTag $changelog
|