#!/bin/bash

# exit when any command fails
set -e

# Get tag version
version=`git describe --tags`

# Publish the orb
circleci orb publish --skip-update-check orb.yml ornikar/frontend-orb@${version:1}
