Skip to content

kerren/setup-dockem

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

50 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockem

This is the Github Action used to install the dockem cli.

Usage

Below is an example of a Github Action that pulls in the cli,

name: "Run Action"

on:
  push:
    branches:
      - main
      - develop

jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Setup Dockem
        uses: kerren/setup-dockem@v2

      - name: Run Dockem
        run: dockem --version

You are able to track a specific version or the lastest within that major version number. For instance, you can use v2.1.0 like so,

      - name: Setup Dockem
        uses: kerren/setup-dockem@v2.1.0

      - name: Run Dockem
        run: dockem --version

Or use the latest of version 2 like so,

      - name: Setup Dockem
        uses: kerren/setup-dockem@v2

      - name: Run Dockem
        run: dockem --version

About

This Github Action can be used to set up the dockem cli in your pipeline

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors