Skip to content

Add tool-versions with nodejs and yarn #29

Add tool-versions with nodejs and yarn

Add tool-versions with nodejs and yarn #29

Workflow file for this run

name: Create Release
on:
push:
tags:
# Push events to matching v*, i.e. v1.0, v20.15.10
- 'v*'
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false