Skip to content

3.3.1

3.3.1 #24

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- "*.*.*"
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
title: $version
changelog: CHANGELOG.md
branch: master
token: ${{ secrets.ACCESS_TOKEN }}