Skip to content

Commit

Permalink
next release will be v2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
djnicholson committed Sep 29, 2020
1 parent b23f2eb commit f7ff5af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@
# 1. Build a feature
# Develop new feature and merge code into the master branch
# of https://github.com/djnicholson/release-action.
# 3. Determine what the next version tag is going to be
# The current value of the "tag-name" setting (found lower
# down in this file will be used).
# 2. Edit README.md
# Change the two examples to use the next version tag.
# 3. Commit and push to GitHub
# 2. Commit and push to GitHub
# Wait for the Action to succeed (monitor this at
# https://github.com/djnicholson/release-action/actions)
# 4. Publish to the market place
# 3. Publish to the market place
# Go to:
# https://github.com/djnicholson/release-action/releases
# Edit the "Upcoming release" (check the "Publish to GitHub
# Marketplace" box and give it a meaningful title and
# description).
# 5. Decide what the next version number will be
# Update the "tag-name" setting lower in this file (increment
# the value) then commit and merge into master.
# 4. Decide what the next version number will be then make these
# updates:
# a. Update the "tag-name" setting lower in this file
# b. Update the "release-name" setting lower in this file
# c. Update README.md and change the two examples to use the
# next tag value.
# Commit push and merge to master
#

name: Build
Expand Down Expand Up @@ -49,7 +48,7 @@ jobs:
id: release-action
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag-name: 'v2.8'
release-name: 'Upcoming release'
tag-name: 'v2.9'
release-name: 'v2.9 [Upcoming release]'
asset-name: 'index.js'
file: 'dist/index.js'
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ The name to use to tag the Release (defaults to "v0.0-rolling")
## Example usage

```
uses: djnicholson/release-action@v2.8
uses: djnicholson/release-action@v2.9
with:
token: ${{ secrets.GITHUB_TOKEN }}
asset-name: 'my-app.dmg'
file: 'out/dist/my-app.dmg'
```

```
uses: djnicholson/release-action@v2.8
uses: djnicholson/release-action@v2.9
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-name: 'Latest rolling build'
Expand Down

0 comments on commit f7ff5af

Please sign in to comment.