Skip to content
arrow-right

GitHub Action

Gimlet Artifact Shipper Action

v0.9.0 Latest version

Gimlet Artifact Shipper Action

arrow-right

Gimlet Artifact Shipper Action

Ship releasable software artifacts to Gimlet

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Gimlet Artifact Shipper Action

uses: gimlet-io/[email protected]

Learn more about this action in gimlet-io/gimlet-artifact-shipper-action

Choose a version

Gimlet Artifact Shipper Github Action

Testing locally

docker build -t myaction .
docker run -v $(pwd):/action -it -e GITHUB_REF=refs/tags/alma myaction docker-image=mycompany/myimage:mytag "true"

Usage

name: Build
on:
  push:
    branches:
      - 'main'

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Check out
      uses: actions/checkout@v1
      with:
        fetch-depth: 1
    - name: Build
      run: |
        echo "Here comes your build command"
    - name: Container image
      run: |
        echo "Here you build your container image"
    - name: Deploy with Gimlet
      id: deploy
      uses: gimlet-io/[email protected]
      env:
        GIMLET_SERVER: ${{ secrets.GIMLET_SERVER }}
        GIMLET_TOKEN: ${{ secrets.GIMLET_TOKEN }}

See in action on https://github.com/gimlet-io/github-actions-integration-sample/