Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 673 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 673 Bytes

Setup

Add a yml file like the following under the .github/workflows directory

name: generate_release
on:
  workflow_dispatch:
    inputs:
      version:
        description: "Version name"
        default: "v1.0.0"
        required: true

jobs:
  generate:
    timeout-minutes: 1
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: maemae-dev/release-generator@main
        with:
          version: ${{ github.event.inputs.version }}
          branch: ${{ github.head_ref }}
          token: ${{ secrets.GITHUB_TOKEN }}

Usage

  1. milestone.jsを修正したら yarn prepareを実行すると変更が反映されます