Increment Tag - Dev branch #250
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: Increment Tag - Dev branch | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Run Unit Tests"] | |
branches: [dev] | |
types: | |
- completed | |
jobs: | |
increment-tag-dev: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Increment Tag (for DEV) | |
uses: ./.github/actions/increment-tag-dev | |
with: | |
package_name: ${{ secrets.PACKAGE_NAME }} | |