Skip to content

Commit

Permalink
adds releasing publishing on github
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandruAntonescuKeysight committed Apr 4, 2024
1 parent 53b22db commit 61274e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,16 @@ jobs:
git commit -m "Updates VERSION"
git tag -d v$(RELEASE_TAG) || true
git tag -a v$(RELEASE_TAG) -m "Release ${RELEASE_TAG}"
git push -o ci.skip
git push -o ci.skip
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_TAG }}
release_name: Release ${{ env.RELEASE_TAG }}
body: |
Release ${{ env.RELEASE_TAG }}
draft: false
prerelease: false

0 comments on commit 61274e6

Please sign in to comment.