Merge pull request #14 from AvayaExperiencePlatform/release/v1.0.0 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
paths: | |
- VERSION | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: VERSION | |
- name: Push Version Tag | |
run: >- | |
TAG="v$(cat VERSION)" && | |
git tag "$TAG" && git push origin "refs/tags/$TAG" |