mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2025-04-05 19:29:22 +07:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f119011bd6 | ||
![]() |
1d562cf526 | ||
![]() |
f00f823d73 | ||
![]() |
6a4c0c7c03 |
13
dist/index.js
vendored
13
dist/index.js
vendored
@ -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
12
main.js
@ -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("/")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user