Skip to content

Github action for installing things to your runner with installation instruction config file.

License

Notifications You must be signed in to change notification settings

instructions-d-installation/installation-instruction-action

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

installation-instruction-action

Github action for installing things to your runner with installation instruction config file.

Usage

    steps:
      - name: Install from Config File
        uses: instructions-d-installation/installation-instruction-action@0.1.2
        with:
          path: <url to git repo or path to directory or config file>
          options: <options for installation (optional)>
          version: <installation-instruction version (optional)>

Input

  • path: Path to directory, file or a remote git repository url containing the config file.
  • options: Options as string to pass to ibi cli. (Please check locally if it works.)
  • version: Version of installation-instruction to use. If empty, uses the latest version.

Example

    steps:
      - name: Install from Config File
        uses: instructions-d-installation/installation-instruction-action@0.1.2
        with:
          path: ./install.cfg
          options: --something

With continue-on-error

Have a look at contexts.

    steps:
      - name: Install from Config File
        uses: instructions-d-installation/installation-instruction-action@0.1.2
        id: install-another-id
        continue-on-error: true
        with:
          path: ./install.cfg
          options: --another
          version: 0.4.0
      - if: ${{ steps.install-another-id.outcome == "failure" }}
        run: whatever

About

Github action for installing things to your runner with installation instruction config file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published