Fix popup notifications in order to wrap the text inside it (#157) #26
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
name: Nightly Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
set_tag: | |
runs-on: ubuntu-latest | |
outputs: | |
tag_name: ${{ steps.tagname.outputs.tag_name }} | |
steps: | |
- name: Create tagname | |
run: echo "tag_name=2.0.0" >> "$GITHUB_OUTPUT" | |
id: tagname | |
- name: Print tagname | |
run: echo "created tag ${{ steps.tagname.outputs.tag_name }}" | |
nightly: | |
needs: set_tag | |
uses: Checkmarx/ast-eclipse-plugin/.github/workflows/release.yml@main | |
with: | |
tag: ${{ needs.set_tag.outputs.tag_name }} | |
rbranch: "nightly" | |
secrets: inherit |