Skip to content

Instantly share code, notes, and snippets.

@slashkeyvalue
slashkeyvalue / ghcr.md
Created October 4, 2023 13:06 — forked from yokawasa/ghcr.md
ghcr (GitHub Container Registry)

ghcr (GitHub Container Registry) quickstart

CLI

To push container images to ghcr, you need peronal access token (PAT) - see how to create PAT

  1. Get PAT (personal access token)

Personal Settings > Developer settings > Personal access tokens

@slashkeyvalue
slashkeyvalue / dependency.js
Last active June 10, 2022 16:38
repro: 'attempt to yield across a C-call boundary'
global.exports('forceCcallException', async () =>
{
await new Promise(resolve =>
{
setImmediate(() =>
{
resolve(true);
})
});