Skip to content

Commit

Permalink
Merge pull request #15 from WyriHaximus/update-versions-in-examples
Browse files Browse the repository at this point in the history
Update versions in examples
  • Loading branch information
WyriHaximus authored Jan 15, 2021
2 parents 7cf3107 + e451397 commit 3f018b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
fetch-depth: 0
- name: 'Get Previous tag'
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@master"
uses: "WyriHaximus/github-action-get-previous-tag@v1"
- name: 'Get next minor version'
id: semvers
uses: "WyriHaximus/github-action-next-semvers@master"
uses: "WyriHaximus/github-action-next-semvers@v1"
with:
version: ${{ steps.previoustag.outputs.tag }}
- name: 'Create new milestone'
id: createmilestone
uses: "WyriHaximus/github-action-create-milestone@master"
uses: "WyriHaximus/github-action-create-milestone@v1"
with:
title: ${{ steps.semvers.outputs.patch }}
env:
Expand Down
4 changes: 2 additions & 2 deletions examples/scheduled-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
#▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼#
- name: Get previous tag
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@1.0.0"
uses: "WyriHaximus/github-action-get-previous-tag@v1"
#▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲#
- name: Get seconds from previous tag to now
id: diff
Expand All @@ -42,7 +42,7 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
- name: Get next minor version
id: semvers
uses: "WyriHaximus/github-action-next-semvers@v1.0"
uses: "WyriHaximus/github-action-next-semvers@v1"
with:
version: ${{ needs.analyze-tags.outputs.previous-tag }}

Expand Down

0 comments on commit 3f018b4

Please sign in to comment.