Skip to content
Snippets Groups Projects

[CI] add release and publish pipeline

Merged Jan Loewe requested to merge jloewe/dcc-js:ci-release-and-publish into master
5 files
+ 69
4
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 9
0
 
#!/usr/bin/env bash
 
 
mapfile -t TAGS < <(git tag --sort=creatordate --list "v*") # Read tags as array
 
NEXT_VER=${TAGS[-1]}
 
 
echo "NEXT_VER=${NEXT_VER}"
 
echo "# dcc-js ${NEXT_VER}
 
 
Support vx.y.z of the DCC" > release.description
Loading