Skip to content

Commit

Permalink
Chore: Introduce release action which is triggered manually
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Nov 2, 2021
1 parent 5149b74 commit 97c00f0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
workflow_dispatch:

jobs:
release:
name: Create release
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Release
run: yarn release

0 comments on commit 97c00f0

Please sign in to comment.