Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
/ actions-login Public archive
generated from actions/typescript-action

GitHub Action to login to an Acorn registry

License

Notifications You must be signed in to change notification settings

acorn-io/actions-login

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

actions-login

build-test

GitHub action to install Acorn CLI and spin up a k3s cluster

Usage

steps:
- uses: actions/checkout@master
- uses: acorn-io/actions-setup@v1
- uses: acorn-io/actions-login@v1
  with:
    registry: ${{secrets.YOUR_REGISTRY}}
    username: ${{secrets.YOUR_USERNAME}}
    password: ${{secrets.YOUR_PASSWORD}}
- run: |
  acorn build . # Whatever you want to do with acorn

Options

Key Default Description
registry Required Registry address to login to (e.g. ghcr.io or docker.io)
username Required Registry username
password Required Registry password
local false Adds the --local-storage argument to acorn login if set to true

License

Copyright (c) 2022 Acorn Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.