Compare commits

...

4 Commits
v1.3.0 ... main

Author SHA1 Message Date
Akkuman
f119011bd6 fix: bool value parse 2024-05-06 23:15:48 +08:00
Akkuman
1d562cf526 chore: package build 2024-05-06 22:53:36 +08:00
Akkuman
f00f823d73 Merge pull request 'Fix parse bool bug' (#5) from lunny/fix_parsebool into main
Reviewed-on: https://gitea.com/actions/gitea-release-action/pulls/5
2024-05-06 14:46:35 +00:00
Lunny Xiao
6a4c0c7c03
Fix parse bool bug 2024-05-06 22:08:41 +08:00
2 changed files with 17 additions and 8 deletions

13
dist/index.js vendored
View File

@ -48144,6 +48144,10 @@ var crypto_js = __nccwpck_require__(4134);
function getIsTrue(v) {
const trueValue = ['true', 'True', 'TRUE']
return trueValue.includes(v)
}
async function run() { async function run() {
try { try {
@ -48151,14 +48155,14 @@ async function run() {
const name = core.getInput("name") const name = core.getInput("name")
const body = getReleaseBody(core.getInput("body"), core.getInput("body_path")) const body = getReleaseBody(core.getInput("body"), core.getInput("body_path"))
const tag_name = core.getInput("tag_name") const tag_name = core.getInput("tag_name")
const draft = Boolean(core.getInput("draft")) const draft = getIsTrue(core.getInput("draft"))
const prerelease = Boolean(core.getInput("prerelease")) const prerelease = getIsTrue(core.getInput("prerelease"))
const files = core.getInput("files") const files = core.getInput("files")
const repository = core.getInput("repository") const repository = core.getInput("repository")
const token = core.getInput("token") const token = core.getInput("token")
const target_commitish = core.getInput("target_commitish") const target_commitish = core.getInput("target_commitish")
const md5sum = core.getInput("md5sum") const md5sum = getIsTrue(core.getInput("md5sum"))
const sha256sum = core.getInput("sha256sum") const sha256sum = getIsTrue(core.getInput("sha256sum"))
const [owner, repo] = (repository).split("/") const [owner, repo] = (repository).split("/")
@ -48265,6 +48269,7 @@ function paths(patterns) {
* @param {String} repo * @param {String} repo
* @param {Number} release_id * @param {Number} release_id
* @param {Array<String>} all_files * @param {Array<String>} all_files
* @param {Map<String, Any>} additional parameters
*/ */
async function uploadFiles(client, owner, repo, release_id, all_files, params) { async function uploadFiles(client, owner, repo, release_id, all_files, params) {
params = params || {}; params = params || {};

12
main.js
View File

@ -8,6 +8,10 @@ import gitea from "gitea-api";
import path from 'path'; import path from 'path';
import CryptoJS from 'crypto-js'; import CryptoJS from 'crypto-js';
function getIsTrue(v) {
const trueValue = ['true', 'True', 'TRUE']
return trueValue.includes(v)
}
async function run() { async function run() {
try { try {
@ -15,14 +19,14 @@ async function run() {
const name = core.getInput("name") const name = core.getInput("name")
const body = getReleaseBody(core.getInput("body"), core.getInput("body_path")) const body = getReleaseBody(core.getInput("body"), core.getInput("body_path"))
const tag_name = core.getInput("tag_name") const tag_name = core.getInput("tag_name")
const draft = Boolean(core.getInput("draft")) const draft = getIsTrue(core.getInput("draft"))
const prerelease = Boolean(core.getInput("prerelease")) const prerelease = getIsTrue(core.getInput("prerelease"))
const files = core.getInput("files") const files = core.getInput("files")
const repository = core.getInput("repository") const repository = core.getInput("repository")
const token = core.getInput("token") const token = core.getInput("token")
const target_commitish = core.getInput("target_commitish") const target_commitish = core.getInput("target_commitish")
const md5sum = core.getInput("md5sum") const md5sum = getIsTrue(core.getInput("md5sum"))
const sha256sum = core.getInput("sha256sum") const sha256sum = getIsTrue(core.getInput("sha256sum"))
const [owner, repo] = (repository).split("/") const [owner, repo] = (repository).split("/")