Skip to content

Commit

Permalink
Feat: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyCreeper authored Oct 4, 2023
1 parent 772fc1e commit 968b712
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Release

on:
push:
tags:
- 'v*'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npm run build
- name: Create dist.zip
run: zip -r dist.zip dist

- name: Create dist.tar.gz
run: tar -zcvf dist.tar.gz dist

- name: Get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.get_version.outputs.VERSION }}"
title: "${{ steps.get_version.outputs.VERSION }}"
prerelease: true
files: |
dist.zip
dist.tar.gz

0 comments on commit 968b712

Please sign in to comment.