Skip to content

Commit

Permalink
Corrected released action format - must be same as tags
Browse files Browse the repository at this point in the history
As noticed while testing in Ocramius/just-trying-automated-releases#16,
the action version must correspond exactly to the tag name, in order to be referenced by third
parties.
  • Loading branch information
Ocramius committed Jul 30, 2020
1 parent 1d4b0b9 commit d121f43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/.github/workflows/release-on-milestone-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: "actions/checkout@v2"

- name: "Release"
uses: "laminas/automatic-releases@v1.0.0"
uses: "laminas/automatic-releases@1.0.1"
with:
command-name: "laminas:automatic-releases:release"
env:
Expand All @@ -27,7 +27,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Create Merge-Up Pull Request"
uses: "laminas/automatic-releases@v1.0.0"
uses: "laminas/automatic-releases@1.0.1"
with:
command-name: "laminas:automatic-releases:create-merge-up-pull-request"
env:
Expand All @@ -37,7 +37,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Create and/or Switch to new Release Branch"
uses: "laminas/automatic-releases@v1.0.0"
uses: "laminas/automatic-releases@1.0.1"
with:
command-name: "laminas:automatic-releases:switch-default-branch-to-next-minor"
env:
Expand Down

0 comments on commit d121f43

Please sign in to comment.