Skip to content

Create initial publish github actions #1

Create initial publish github actions

Create initial publish github actions #1

Workflow file for this run

name: Deploy to RubyGems
on:
workflow_dispatch:
push:
tags:
- '*'
branches:
- kiskolabs/gha-publish-to-rubygems
jobs:
test:
uses: ./.github/workflows/ci.yml
push:
runs-on: ubuntu-latest
needs: [test]
permissions:
contents: write
id-token: write
steps:
- name: Test
run: |
echo "Testing successful case"
# - uses: actions/checkout@v4
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true
# ruby-version: 3.0
# # Release
# - uses: rubygems/release-gem@v1