Authenticate to GitHub Package Registry

Action designed to automate the authentication process with GitHub Package Registry

exile.watch logo

This page covers auth-github-registry* actions

Usage

In .github/workflows/auth-github-registry.yml paste following snippet:

name: "Auth to GitHub registry: @exile-watch / doryani"

on:
  push:
    branches:
      - main

jobs:
  auth-github-registry:
    runs-on: ubuntu-latest
    steps:
      - name: Authenticate to GitHub Registry
        uses: exile-watch/doryani/auth-github-registry@main
        with:
          GH_TOKEN: ${{ inputs.GH_TOKEN }}

Last updated

Was this helpful?