Skip to content

Smartly join URLs (#101) #15

Smartly join URLs (#101)

Smartly join URLs (#101) #15

Workflow file for this run

# workflow to push a release to rubygems.org when a tag is detected
on:
push:
tags:
- '*'
name: Upload Rubygem Package
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: test
run: make build test BUILD=local
- name: report gemfile name
run: make gem
- name: creds
run: ./save-gem-creds.sh
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
- name: deploy
run: make push BUILD=local