All files / src add-channel.ts

0% Statements 0/15
0% Branches 0/4
0% Functions 0/1
0% Lines 0/15

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51                                                                                                     
import resolveConfig, { PluginConfig } from './config.js';
import { PublishContext } from 'semantic-release';
import { Forgejo } from './services/forgejo.js';
import { rfetch } from '@ribbon-studios/js-utils';
import { isPrerelease } from './utils/semrel.js';
import { RELEASE_NAME } from './constants.js';
 
export async function addChannel(pluginConfig: PluginConfig, context: PublishContext) {
  const {
    branch,
    nextRelease: { name, gitTag, notes },
    logger,
  } = context;
  const { forgejoToken, forgejoUrl, slug } = resolveConfig(pluginConfig, context);
 
  const release: Forgejo.CreateReleaseOption = {
    name,
    tag_name: gitTag,
    prerelease: isPrerelease(branch),
  };
 
  const client = new Forgejo({
    url: forgejoUrl,
    token: forgejoToken,
  });
 
  try {
    const { id: releaseId } = await client.release.tags.get(slug, gitTag);
 
    const { html_url: url } = await client.release.update(slug, releaseId, release);
 
    logger.log('Updated Forgejo release: %s', url);
 
    return { url, name: RELEASE_NAME };
  } catch (error) {
    if (rfetch.is.error(error) && error.status === 404) {
      logger.log('There is no release for tag %s, creating a new one', gitTag);
 
      const { html_url: url } = await client.release.create(slug, {
        ...release,
        body: notes,
      });
 
      logger.log('Published Forgejo release: %s', url);
      return { url, name: RELEASE_NAME };
    }
 
    throw error;
  }
}