Skip to content

Added format to lookup for project-usa, updated test to include format #86

Added format to lookup for project-usa, updated test to include format

Added format to lookup for project-usa, updated test to include format #86

Workflow file for this run

name: Ruby Gem Publish
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
bundler-cache: false
- name: Publish
run: |
VERSION=${GITHUB_REF#refs/*/} API_KEY=${{ secrets.GEM_HOST_API_KEY }} make publish
env:
API_KEY: "${{ secrets.GEM_HOST_API_KEY }}"