daily-version-action icon indicating copy to clipboard operation
daily-version-action copied to clipboard

Option: Create output but not git tag

Open fregante opened this issue 2 years ago • 0 comments

I'd like to perform additional tasks before creating the tag or maybe use a separate action to create and submit it. Example:

  Version:
    steps:
    - uses: actions/checkout@v2
    - name: Should release?
      uses: fregante/daily-version-action@v2
      with:
        create-git-tag: false
    - if: env.DAILY_VERSION_CREATED
      run: npm version $DAILY_VERSION

Maybe it should be called dry-run

fregante avatar Oct 27 '22 09:10 fregante