Sha256: f386f1e54e26fe4bd48ab898097b134c1306c283c0f6fa76f2d51f4fc2d38b4a
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
#!/bin/bash set -e REPO_PATH="id-sk/idsk_frontend_toolkit" echo "Add config for alphagov/$REPO_PATH" git config --global user.name "ID-SK CI" git config --global user.email "ernest.walzel+idsk@slovensko.digital" git remote add origin_ssh git@github.com:$REPO_PATH.git # This openssl command was generated automatically by `travis encrypt-file`, see `.travis/README.md` for more details openssl aes-256-cbc -K $encrypted_82e9927cdebb_key -iv $encrypted_82e9927cdebb_iv -in .travis/idsk_frontend_toolkit_push.enc -out ~/.ssh/id_rsa -d chmod 600 ~/.ssh/id_rsa echo "Check to see if the version file has been updated" # get the version from the version file VERSION_TAG="v`cat VERSION.txt`" # Create a new tag - if the version file has been updated and a tag for that # version doesn't already exist # check to make sure the tag doesn't already exist if ! git rev-parse $VERSION_TAG >/dev/null 2>&1; then echo "Creating new tag: $VERSION_TAG" # Create a new tag and push to Github git tag $VERSION_TAG git push origin_ssh $VERSION_TAG # Alias branch for the most recently released tag, for easier diffing # Force push local `master` branch to the `latest-release` branch on Github git push --force origin_ssh master:latest-release echo "Pushed latest-release branch to GitHub" else echo "Not creating a new tag, or updating the latest-release branch as the tag already exists..." fi
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
idsk_frontend_toolkit-8.4.4 | app/assets/create-release.sh |
idsk_frontend_toolkit-7.4.3 | app/assets/create-release.sh |