Skip to content

Commit

Permalink
chore(release): 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminNolan committed Jan 31, 2023
1 parent 13c552a commit bfd6141
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 2.0.4 (2023-01-31)


### Bug Fixes

* new GitHub -> getOctokit ([9108fd4](https://github.com/comnoco/create-release-action/commit/9108fd4483aec11e75ad0644a5a7d2499393a4f3))
* Test fixes ([0f6e3d3](https://github.com/comnoco/create-release-action/commit/0f6e3d3702f591c93b4a82d207853d0a1f6824dc))
* Unique(?) name ([b5123a5](https://github.com/comnoco/create-release-action/commit/b5123a53c6df2d1ac1f1b29e5e011da4f185cb67))
* Unique(?) name ([8dcec53](https://github.com/comnoco/create-release-action/commit/8dcec535d3ade31cc3abf819bb007b5b0c86b23f))

### 2.0.5 (2023-01-31)


Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9601,13 +9601,13 @@ function wrappy (fn, cb) {
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

const core = __nccwpck_require__(2186);
const { GitHub, context } = __nccwpck_require__(5438);
const { getOctokit, context } = __nccwpck_require__(5438);
const fs = __nccwpck_require__(7147);

async function run() {
try {
// Get authenticated GitHub client (Ocktokit): https://github.com/actions/toolkit/tree/master/packages/github#usage
const github = new GitHub(process.env.GITHUB_TOKEN);
const github = getOctokit(process.env.GITHUB_TOKEN);

// Get owner and repo from context of payload that triggered the action
const { owner: currentOwner, repo: currentRepo } = context.repo;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-release",
"version": "2.0.5",
"version": "2.0.4",
"description": "Create a Release in a GitHub Action",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit bfd6141

Please sign in to comment.