@tarsilla/commit-wizard 1.4.4 → 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"crypto";import t from"fs";import{
|
|
1
|
+
import e from"crypto";import t from"fs";import{Octokit as a}from"@octokit/rest";import{analyzeCommits as r}from"@semantic-release/commit-analyzer";import{prepare as s,verifyConditions as o}from"@semantic-release/git";import{generateNotes as n}from"@semantic-release/release-notes-generator";const i={preset:"conventionalcommits",parserOpts:{headerPattern:RegExp("^(?<type>\\w+)(?<exclamation1>!?)(?:\\((?<scope>[^)]+)\\)(?<exclamation2>!?))?: (?<subject>.+)$"),headerCorrespondence:["type","exclamation1","scope","exclamation2","subject"]},releaseRules:[{type:"feat",exclamation1:"!",release:"major"},{type:"feat",exclamation2:"!",release:"major"},{type:"feat",release:"minor"},{type:"fix",release:"patch"},{type:"docs",release:"patch"},{type:"style",release:"patch"},{type:"refactor",release:"patch"},{type:"perf",release:"patch"},{type:"test",release:"patch"},{type:"build",release:"patch"},{type:"ci",release:"patch"},{type:"chore",release:"patch"},{type:"revert",release:"patch"}]};let c=!1;function l(e,t){const a=new URL(t).pathname,r=(a.startsWith("/")?a.slice(1):a).split("/").pop();return e.tap??`${r}.rb`}async function p(a,r){const{nextRelease:s,logger:o,options:n}=r;if(!s?.version)throw new Error("Next release version is not available.");const i=`v${s.version}`,c=n.repositoryUrl,p=new URL(c).pathname,m=`https://codeload.github.com/${p.startsWith("/")?p.slice(1):p}/tar.gz/refs/tags/${i}`,f=await async function(t,a){const{logger:r}=a;r.log(`Calculating SHA256 for URL: ${t}`);const s=await fetch(t);if(!s.ok)throw new Error(`Failed to fetch file. Status Code: ${s.status}`);if(!s.body)throw new Error("Response body is null.");const o=e.createHash("sha256"),n=s.body.getReader();return new Promise(((e,t)=>{!function a(){n.read().then((({done:t,value:r})=>{t?e(o.digest("hex")):(r&&o.update(r),a())})).catch(t)}()}))}(m,r),h=l(a,c);let y=t.readFileSync(h,"utf8");y=y.replace(/url ".*"/,`url "${m}"`),y=y.replace(/sha256 ".*"/,`sha256 "${f}"`),t.writeFileSync(h,y),o.log(`Updated formula with version ${i}, URL ${m}, and SHA256 ${f}`)}async function m(e,t){if(o){const{options:a}=t,r=l(e,a.repositoryUrl);await o({assets:[r],message:"chore(release): ${nextRelease.version}"},t)}c=!0}const f={addChannel:async function(e,t){},verifyConditions:m,analyzeCommits:async function(e,t){return c||(await m(e,t),c=!0),r(i,t)},generateNotes:async function(e,t){return c||(await m(e,t),c=!0),n({},t)},prepare:async function(e,t){if(c||(await m(e,t),c=!0),s){const{options:r}=t,o=l(e,r.repositoryUrl);await async function(e,t){const{nextRelease:r,logger:s,options:o}=t,n=`v${r.version}`,i=o.repositoryUrl,[c,l]=new URL(i).pathname.slice(1).split("/");s.log(`Creating tag ${n} using GitHub API...`);const p=new a({auth:process.env.GITHUB_TOKEN});try{const{data:e}=await p.repos.getBranch({owner:c,repo:l,branch:o.branch??"main"}),t=e.commit.sha;await p.git.createTag({owner:c,repo:l,tag:n,message:`Release ${n}`,object:t,type:"commit"}),await p.git.createRef({owner:c,repo:l,ref:`refs/tags/${n}`,sha:t}),s.log(`Tag ${n} created successfully.`)}catch(e){throw s.error(`Failed to create tag ${n}: ${e.message}`),e}}(0,t),await p(e,t),await s({assets:[o],message:"chore(release): ${nextRelease.version}"},t)}},publish:async function(e,t){return null},success:async function(e,t){},fail:async function(e,t){}};export{f as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../src/semantic-release/brew/index.ts"],"sourcesContent":["import crypto from 'crypto';\nimport fs from 'fs';\n\n//@ts-ignore\nimport { analyzeCommits as commitAnalyzerAnalyzeCommits } from '@semantic-release/commit-analyzer';\nimport {\n prepare as gitPrepare,\n verifyConditions as gitVerifyConditions,\n //@ts-ignore\n} from '@semantic-release/git';\n//@ts-ignore\nimport { generateNotes as notesGeneratorGenerateNotes } from '@semantic-release/release-notes-generator';\nimport {\n AddChannelContext,\n AnalyzeCommitsContext,\n FailContext,\n GenerateNotesContext,\n PrepareContext,\n PublishContext,\n SuccessContext,\n VerifyConditionsContext,\n} from 'semantic-release';\n\nimport { SemanticReleasePlugin } from '../types.js';\n\nconst analyzerConfig = {\n preset: 'conventionalcommits',\n parserOpts: {\n headerPattern: /^(?<type>\\w+)(?<exclamation1>!?)(?:\\((?<scope>[^)]+)\\)(?<exclamation2>!?))?: (?<subject>.+)$/,\n headerCorrespondence: ['type', 'exclamation1', 'scope', 'exclamation2', 'subject'],\n },\n releaseRules: [\n { type: 'feat', exclamation1: '!', release: 'major' },\n { type: 'feat', exclamation2: '!', release: 'major' },\n { type: 'feat', release: 'minor' },\n { type: 'fix', release: 'patch' },\n { type: 'docs', release: 'patch' },\n { type: 'style', release: 'patch' },\n { type: 'refactor', release: 'patch' },\n { type: 'perf', release: 'patch' },\n { type: 'test', release: 'patch' },\n { type: 'build', release: 'patch' },\n { type: 'ci', release: 'patch' },\n { type: 'chore', release: 'patch' },\n { type: 'revert', release: 'patch' },\n ],\n};\n\ntype PluginConfig = { tap?: string };\n\nlet verified = false;\n\nasync function calculateSha256(url: string): Promise<string> {\n const response = await fetch(url);\n\n if (!response.ok) {\n throw new Error(`Failed to fetch file. Status Code: ${response.status}`);\n }\n\n if (!response.body) {\n throw new Error('Response body is null.');\n }\n\n const hash = crypto.createHash('sha256');\n const reader = response.body.getReader();\n\n return new Promise((resolve, reject) => {\n function read() {\n reader\n .read()\n .then(({ done, value }) => {\n if (done) {\n resolve(hash.digest('hex'));\n return;\n }\n if (value) {\n hash.update(value);\n }\n read();\n })\n .catch(reject);\n }\n read();\n });\n}\n\nfunction getFormulaFile(pluginConfig: PluginConfig, repositoryUrl: string): string {\n const url = new URL(repositoryUrl);\n const repositoryPath = url.pathname;\n const repository = repositoryPath.startsWith('/') ? repositoryPath.slice(1) : repositoryPath;\n const project = repository.split('/').pop();\n\n return pluginConfig.tap ?? `${project}.rb`;\n}\n\nasync function updateFormulaFile(pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {\n const { nextRelease, logger, options } = context;\n\n if (!nextRelease?.version) {\n throw new Error('Next release version is not available.');\n }\n\n const version = nextRelease.version;\n\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const url = new URL(repositoryUrl);\n const repositoryPath = url.pathname;\n const repository = repositoryPath.startsWith('/') ? repositoryPath.slice(1) : repositoryPath;\n\n const tarUrl = `https://codeload.github.com/${repository}/tar.gz/refs/tags/v${version}`;\n const sha256 = await calculateSha256(tarUrl);\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n\n let formulaContent = fs.readFileSync(formulaFile, 'utf8');\n formulaContent = formulaContent.replace(/url \".*\"/, `url \"${tarUrl}\"`);\n formulaContent = formulaContent.replace(/sha256 \".*\"/, `sha256 \"${sha256}\"`);\n fs.writeFileSync(formulaFile, formulaContent);\n\n logger.log(`Updated formula with version ${version}, URL ${tarUrl}, and SHA256 ${sha256}`);\n}\n\nasync function addChannel(_pluginConfig: PluginConfig, _context: AddChannelContext): Promise<void> {\n //do nothing\n}\n\nasync function analyzeCommits(pluginConfig: PluginConfig, context: AnalyzeCommitsContext): Promise<string | false> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n return commitAnalyzerAnalyzeCommits(analyzerConfig, context);\n}\n\nasync function fail(_pluginConfig: PluginConfig, _context: FailContext): Promise<void> {\n //do nothing\n}\n\nasync function generateNotes(pluginConfig: PluginConfig, context: GenerateNotesContext): Promise<string> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n return notesGeneratorGenerateNotes({}, context);\n}\n\nasync function prepare(pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n if (gitPrepare) {\n const { options } = context;\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n\n await updateFormulaFile(pluginConfig, context);\n\n await gitPrepare(\n {\n assets: [formulaFile],\n message: 'chore(release): ${nextRelease.version}',\n },\n context,\n );\n }\n}\n\nasync function publish(_pluginConfig: PluginConfig, _context: PublishContext): Promise<unknown> {\n //do nothing\n return null;\n}\n\nasync function success(_pluginConfig: PluginConfig, _context: SuccessContext): Promise<void> {\n //do nothing\n}\n\nasync function verifyConditions(pluginConfig: PluginConfig, context: VerifyConditionsContext): Promise<void> {\n if (gitVerifyConditions) {\n const { options } = context;\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n await gitVerifyConditions(\n {\n assets: [formulaFile],\n message: 'chore(release): ${nextRelease.version}',\n },\n context,\n );\n }\n verified = true;\n}\n\nconst plugin: SemanticReleasePlugin<{ tap: string }> = {\n addChannel,\n verifyConditions,\n analyzeCommits,\n generateNotes,\n prepare,\n publish,\n success,\n fail,\n};\n\nexport default plugin;\n"],"names":["analyzerConfig","preset","parserOpts","headerPattern","RegExp","headerCorrespondence","releaseRules","type","exclamation1","release","exclamation2","verified","getFormulaFile","pluginConfig","repositoryUrl","repositoryPath","URL","pathname","project","startsWith","slice","split","pop","tap","async","updateFormulaFile","context","nextRelease","logger","options","version","Error","tarUrl","sha256","url","response","fetch","ok","status","body","hash","crypto","createHash","reader","getReader","Promise","resolve","reject","read","then","done","value","digest","update","catch","calculateSha256","formulaFile","formulaContent","fs","readFileSync","replace","writeFileSync","log","verifyConditions","gitVerifyConditions","assets","message","plugin","addChannel","_pluginConfig","_context","analyzeCommits","commitAnalyzerAnalyzeCommits","generateNotes","notesGeneratorGenerateNotes","prepare","gitPrepare","publish","success","fail"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../src/semantic-release/brew/index.ts"],"sourcesContent":["import crypto from 'crypto';\nimport fs from 'fs';\n\nimport { Octokit } from '@octokit/rest';\n//@ts-ignore\nimport { analyzeCommits as commitAnalyzerAnalyzeCommits } from '@semantic-release/commit-analyzer';\nimport {\n prepare as gitPrepare,\n verifyConditions as gitVerifyConditions,\n //@ts-ignore\n} from '@semantic-release/git';\n//@ts-ignore\nimport { generateNotes as notesGeneratorGenerateNotes } from '@semantic-release/release-notes-generator';\nimport {\n AddChannelContext,\n AnalyzeCommitsContext,\n FailContext,\n GenerateNotesContext,\n PrepareContext,\n PublishContext,\n SuccessContext,\n VerifyConditionsContext,\n} from 'semantic-release';\n\nimport { SemanticReleasePlugin } from '../types.js';\n\nconst analyzerConfig = {\n preset: 'conventionalcommits',\n parserOpts: {\n headerPattern: /^(?<type>\\w+)(?<exclamation1>!?)(?:\\((?<scope>[^)]+)\\)(?<exclamation2>!?))?: (?<subject>.+)$/,\n headerCorrespondence: ['type', 'exclamation1', 'scope', 'exclamation2', 'subject'],\n },\n releaseRules: [\n { type: 'feat', exclamation1: '!', release: 'major' },\n { type: 'feat', exclamation2: '!', release: 'major' },\n { type: 'feat', release: 'minor' },\n { type: 'fix', release: 'patch' },\n { type: 'docs', release: 'patch' },\n { type: 'style', release: 'patch' },\n { type: 'refactor', release: 'patch' },\n { type: 'perf', release: 'patch' },\n { type: 'test', release: 'patch' },\n { type: 'build', release: 'patch' },\n { type: 'ci', release: 'patch' },\n { type: 'chore', release: 'patch' },\n { type: 'revert', release: 'patch' },\n ],\n};\n\ntype PluginConfig = { tap?: string };\n\nlet verified = false;\n\nasync function createTag(_pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {\n const { nextRelease, logger, options } = context;\n\n const tagName = `v${nextRelease.version}`;\n\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const [owner, repo] = new URL(repositoryUrl).pathname.slice(1).split('/');\n\n logger.log(`Creating tag ${tagName} using GitHub API...`);\n\n const octokit = new Octokit({\n auth: process.env.GITHUB_TOKEN, // Ensure GITHUB_TOKEN is available in the environment\n });\n\n try {\n // Get the latest commit SHA from the default branch\n const { data: branch } = await octokit.repos.getBranch({\n owner,\n repo,\n branch: options.branch ?? 'main',\n });\n\n const commitSha = branch.commit.sha;\n\n // Create the tag object\n await octokit.git.createTag({\n owner,\n repo,\n tag: tagName,\n message: `Release ${tagName}`,\n object: commitSha,\n type: 'commit',\n });\n\n // Create the reference for the tag\n await octokit.git.createRef({\n owner,\n repo,\n ref: `refs/tags/${tagName}`,\n sha: commitSha,\n });\n\n logger.log(`Tag ${tagName} created successfully.`);\n } catch (error) {\n logger.error(`Failed to create tag ${tagName}: ${(error as Error).message}`);\n throw error;\n }\n}\n\nasync function calculateSha256(url: string, context: PrepareContext): Promise<string> {\n const { logger } = context;\n\n logger.log(`Calculating SHA256 for URL: ${url}`);\n\n const response = await fetch(url);\n\n if (!response.ok) {\n throw new Error(`Failed to fetch file. Status Code: ${response.status}`);\n }\n\n if (!response.body) {\n throw new Error('Response body is null.');\n }\n\n const hash = crypto.createHash('sha256');\n const reader = response.body.getReader();\n\n return new Promise((resolve, reject) => {\n function read() {\n reader\n .read()\n .then(({ done, value }) => {\n if (done) {\n resolve(hash.digest('hex'));\n return;\n }\n if (value) {\n hash.update(value);\n }\n read();\n })\n .catch(reject);\n }\n read();\n });\n}\n\nfunction getFormulaFile(pluginConfig: PluginConfig, repositoryUrl: string): string {\n const url = new URL(repositoryUrl);\n const repositoryPath = url.pathname;\n const repository = repositoryPath.startsWith('/') ? repositoryPath.slice(1) : repositoryPath;\n const project = repository.split('/').pop();\n\n return pluginConfig.tap ?? `${project}.rb`;\n}\n\nasync function updateFormulaFile(pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {\n const { nextRelease, logger, options } = context;\n\n if (!nextRelease?.version) {\n throw new Error('Next release version is not available.');\n }\n\n const tagName = `v${nextRelease.version}`;\n\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const url = new URL(repositoryUrl);\n const repositoryPath = url.pathname;\n const repository = repositoryPath.startsWith('/') ? repositoryPath.slice(1) : repositoryPath;\n\n const tarUrl = `https://codeload.github.com/${repository}/tar.gz/refs/tags/${tagName}`;\n const sha256 = await calculateSha256(tarUrl, context);\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n\n let formulaContent = fs.readFileSync(formulaFile, 'utf8');\n formulaContent = formulaContent.replace(/url \".*\"/, `url \"${tarUrl}\"`);\n formulaContent = formulaContent.replace(/sha256 \".*\"/, `sha256 \"${sha256}\"`);\n fs.writeFileSync(formulaFile, formulaContent);\n\n logger.log(`Updated formula with version ${tagName}, URL ${tarUrl}, and SHA256 ${sha256}`);\n}\n\nasync function addChannel(_pluginConfig: PluginConfig, _context: AddChannelContext): Promise<void> {\n //do nothing\n}\n\nasync function analyzeCommits(pluginConfig: PluginConfig, context: AnalyzeCommitsContext): Promise<string | false> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n return commitAnalyzerAnalyzeCommits(analyzerConfig, context);\n}\n\nasync function fail(_pluginConfig: PluginConfig, _context: FailContext): Promise<void> {\n //do nothing\n}\n\nasync function generateNotes(pluginConfig: PluginConfig, context: GenerateNotesContext): Promise<string> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n return notesGeneratorGenerateNotes({}, context);\n}\n\nasync function prepare(pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {\n if (!verified) {\n await verifyConditions(pluginConfig, context);\n verified = true;\n }\n\n if (gitPrepare) {\n const { options } = context;\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n\n await createTag(pluginConfig, context);\n\n await updateFormulaFile(pluginConfig, context);\n\n await gitPrepare(\n {\n assets: [formulaFile],\n message: 'chore(release): ${nextRelease.version}',\n },\n context,\n );\n }\n}\n\nasync function publish(_pluginConfig: PluginConfig, _context: PublishContext): Promise<unknown> {\n //do nothing\n return null;\n}\n\nasync function success(_pluginConfig: PluginConfig, _context: SuccessContext): Promise<void> {\n //do nothing\n}\n\nasync function verifyConditions(pluginConfig: PluginConfig, context: VerifyConditionsContext): Promise<void> {\n if (gitVerifyConditions) {\n const { options } = context;\n const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release\n const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);\n await gitVerifyConditions(\n {\n assets: [formulaFile],\n message: 'chore(release): ${nextRelease.version}',\n },\n context,\n );\n }\n verified = true;\n}\n\nconst plugin: SemanticReleasePlugin<{ tap: string }> = {\n addChannel,\n verifyConditions,\n analyzeCommits,\n generateNotes,\n prepare,\n publish,\n success,\n fail,\n};\n\nexport default plugin;\n"],"names":["analyzerConfig","preset","parserOpts","headerPattern","RegExp","headerCorrespondence","releaseRules","type","exclamation1","release","exclamation2","verified","getFormulaFile","pluginConfig","repositoryUrl","repositoryPath","URL","pathname","project","startsWith","slice","split","pop","tap","async","updateFormulaFile","context","nextRelease","logger","options","version","Error","tagName","tarUrl","sha256","url","log","response","fetch","ok","status","body","hash","crypto","createHash","reader","getReader","Promise","resolve","reject","read","then","done","value","digest","update","catch","calculateSha256","formulaFile","formulaContent","fs","readFileSync","replace","writeFileSync","verifyConditions","gitVerifyConditions","assets","message","plugin","addChannel","_pluginConfig","_context","analyzeCommits","commitAnalyzerAnalyzeCommits","generateNotes","notesGeneratorGenerateNotes","prepare","gitPrepare","owner","repo","octokit","Octokit","auth","process","env","GITHUB_TOKEN","data","branch","repos","getBranch","commitSha","commit","sha","git","createTag","tag","object","createRef","ref","error","publish","success","fail"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarsilla/commit-wizard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"semantic-release": "^24"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
+
"@octokit/rest": "^21.1.1",
|
|
62
63
|
"chokidar": "^4.0.3",
|
|
63
64
|
"inquirer": "^8.2.6"
|
|
64
65
|
},
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import crypto from 'crypto';
|
|
2
2
|
import fs from 'fs';
|
|
3
3
|
|
|
4
|
+
import { Octokit } from '@octokit/rest';
|
|
4
5
|
//@ts-ignore
|
|
5
6
|
import { analyzeCommits as commitAnalyzerAnalyzeCommits } from '@semantic-release/commit-analyzer';
|
|
6
7
|
import {
|
|
@@ -50,7 +51,60 @@ type PluginConfig = { tap?: string };
|
|
|
50
51
|
|
|
51
52
|
let verified = false;
|
|
52
53
|
|
|
53
|
-
async function
|
|
54
|
+
async function createTag(_pluginConfig: PluginConfig, context: PrepareContext): Promise<void> {
|
|
55
|
+
const { nextRelease, logger, options } = context;
|
|
56
|
+
|
|
57
|
+
const tagName = `v${nextRelease.version}`;
|
|
58
|
+
|
|
59
|
+
const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release
|
|
60
|
+
const [owner, repo] = new URL(repositoryUrl).pathname.slice(1).split('/');
|
|
61
|
+
|
|
62
|
+
logger.log(`Creating tag ${tagName} using GitHub API...`);
|
|
63
|
+
|
|
64
|
+
const octokit = new Octokit({
|
|
65
|
+
auth: process.env.GITHUB_TOKEN, // Ensure GITHUB_TOKEN is available in the environment
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
try {
|
|
69
|
+
// Get the latest commit SHA from the default branch
|
|
70
|
+
const { data: branch } = await octokit.repos.getBranch({
|
|
71
|
+
owner,
|
|
72
|
+
repo,
|
|
73
|
+
branch: options.branch ?? 'main',
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
const commitSha = branch.commit.sha;
|
|
77
|
+
|
|
78
|
+
// Create the tag object
|
|
79
|
+
await octokit.git.createTag({
|
|
80
|
+
owner,
|
|
81
|
+
repo,
|
|
82
|
+
tag: tagName,
|
|
83
|
+
message: `Release ${tagName}`,
|
|
84
|
+
object: commitSha,
|
|
85
|
+
type: 'commit',
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
// Create the reference for the tag
|
|
89
|
+
await octokit.git.createRef({
|
|
90
|
+
owner,
|
|
91
|
+
repo,
|
|
92
|
+
ref: `refs/tags/${tagName}`,
|
|
93
|
+
sha: commitSha,
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
logger.log(`Tag ${tagName} created successfully.`);
|
|
97
|
+
} catch (error) {
|
|
98
|
+
logger.error(`Failed to create tag ${tagName}: ${(error as Error).message}`);
|
|
99
|
+
throw error;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
async function calculateSha256(url: string, context: PrepareContext): Promise<string> {
|
|
104
|
+
const { logger } = context;
|
|
105
|
+
|
|
106
|
+
logger.log(`Calculating SHA256 for URL: ${url}`);
|
|
107
|
+
|
|
54
108
|
const response = await fetch(url);
|
|
55
109
|
|
|
56
110
|
if (!response.ok) {
|
|
@@ -100,15 +154,15 @@ async function updateFormulaFile(pluginConfig: PluginConfig, context: PrepareCon
|
|
|
100
154
|
throw new Error('Next release version is not available.');
|
|
101
155
|
}
|
|
102
156
|
|
|
103
|
-
const
|
|
157
|
+
const tagName = `v${nextRelease.version}`;
|
|
104
158
|
|
|
105
159
|
const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release
|
|
106
160
|
const url = new URL(repositoryUrl);
|
|
107
161
|
const repositoryPath = url.pathname;
|
|
108
162
|
const repository = repositoryPath.startsWith('/') ? repositoryPath.slice(1) : repositoryPath;
|
|
109
163
|
|
|
110
|
-
const tarUrl = `https://codeload.github.com/${repository}/tar.gz/refs/tags
|
|
111
|
-
const sha256 = await calculateSha256(tarUrl);
|
|
164
|
+
const tarUrl = `https://codeload.github.com/${repository}/tar.gz/refs/tags/${tagName}`;
|
|
165
|
+
const sha256 = await calculateSha256(tarUrl, context);
|
|
112
166
|
const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);
|
|
113
167
|
|
|
114
168
|
let formulaContent = fs.readFileSync(formulaFile, 'utf8');
|
|
@@ -116,7 +170,7 @@ async function updateFormulaFile(pluginConfig: PluginConfig, context: PrepareCon
|
|
|
116
170
|
formulaContent = formulaContent.replace(/sha256 ".*"/, `sha256 "${sha256}"`);
|
|
117
171
|
fs.writeFileSync(formulaFile, formulaContent);
|
|
118
172
|
|
|
119
|
-
logger.log(`Updated formula with version ${
|
|
173
|
+
logger.log(`Updated formula with version ${tagName}, URL ${tarUrl}, and SHA256 ${sha256}`);
|
|
120
174
|
}
|
|
121
175
|
|
|
122
176
|
async function addChannel(_pluginConfig: PluginConfig, _context: AddChannelContext): Promise<void> {
|
|
@@ -156,6 +210,8 @@ async function prepare(pluginConfig: PluginConfig, context: PrepareContext): Pro
|
|
|
156
210
|
const repositoryUrl = options.repositoryUrl!; // Guaranteed to be defined by semantic-release
|
|
157
211
|
const formulaFile = getFormulaFile(pluginConfig, repositoryUrl);
|
|
158
212
|
|
|
213
|
+
await createTag(pluginConfig, context);
|
|
214
|
+
|
|
159
215
|
await updateFormulaFile(pluginConfig, context);
|
|
160
216
|
|
|
161
217
|
await gitPrepare(
|