Skip to content
This repository was archived by the owner on Sep 13, 2025. It is now read-only.

[command] npm run release #48

[command] npm run release

[command] npm run release #48

Workflow file for this run

on:
push:
tags:
- "v*"
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false