devmasx / merge-branch

A GitHub Action that merge PR branch to other branchs
161 stars 58 forks source link

1.4.0 not found #16

Closed teebu closed 1 year ago

teebu commented 3 years ago

Can't use latest version 1.4.0 in my gh action. Throws error.

Using

  name: Merge branch
  uses: devmasx/merge-branch@1.4.0
spacewaterbear commented 3 years ago

replace uses: devmasx/merge-branch@1.4.0 by uses: devmasx/merge-branch@master

CWSites commented 2 years ago

When trying to target a specific release you need to include the full name, in this case v1.4.0 is what you need there. However @spacewaterbear is correct, by including master you will always be on latest.

See more on the releases page

mmospanenko commented 1 year ago

you have typo in version v1.4.0, not 1.4.0

teebu commented 1 year ago

You're correct, issue resolved.