Skip to content

Commit

Permalink
major: dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ttyS0e committed Jun 13, 2024
1 parent d05ca9d commit 2c8d3aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,13 @@ jobs:
repo: context.repo.repo,
process.env.RELEASE_TAG
});
print(release)
// Upload the release asset
await github.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.data.id,
name: "app.zip",
name: "kong-plugin-myplugin-" + process.env.RELEASE_VER + "-1.rockspec",
data: await fs.readFileSync("kong-plugin-myplugin-" + process.env.RELEASE_VER + "-1.rockspec")
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local plugin_name = "myplugin"
local package_name = "kong-plugin-" .. plugin_name
local package_version = "4.0.0"
local package_version = "dev"
local rockspec_revision = "1"

local github_account_name = "Kong"
Expand Down

0 comments on commit 2c8d3aa

Please sign in to comment.