Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eomm committed Sep 6, 2020
2 parents 7955475 + d5c3e96 commit d2286f1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,20 @@ jobs:
env:
REPO: ${{ github.repository }}

- name: Read new Version
id: reader
run: |
PACKAGE_VERSION=$(node -p -e "require('./package.json').version")
echo "::set-output name=read_version::$PACKAGE_VERSION"
- name: Create Github Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ steps.reader.outputs.read_version }}
release_name: Release ${{ steps.reader.outputs.read_version }}
body: |
${{ steps.changelog.outputs.changelog }}
draft: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and here you will find the source code and the commit history!
## Posts

1. [A Discord app with Fastify!](https://dev.to/eomm/a-discord-app-with-fastify-3h8c) - [📝](./posts/01-init-application.md)
2. Draft: [Project Automation](TODO) - [📝](./posts/02-project-automation.md)
2. [Project Automation](https://dev.to/eomm/project-automation-2bee) - [📝](./posts/02-project-automation.md)
3. COOMING SOON

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion posts/02-project-automation.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Check out [the source code](https://github.com/Eomm/fastify-discord-bot-demo/tre

## End

In the next posts we will:
In the next post we will:

+ add new features to the application:
+ store the token in cookies
Expand Down

0 comments on commit d2286f1

Please sign in to comment.