mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 22:44:20 +02:00
21 lines
392 B
YAML
21 lines
392 B
YAML
name: Create a Release
|
|
on:
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: write # for creating release
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
GH_REPO: ${{ github.repository }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./
|
|
with:
|
|
ruby-version: '3.3'
|
|
- run: ruby release.rb
|