ci: add release workflow

This commit is contained in:
winston 2023-03-26 17:51:00 +02:00
parent 342fda0cde
commit b45ffcda64
No known key found for this signature in database
GPG key ID: 3786770EDBC2B481

22
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Release
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
- name: Create tarball
run: tar czf catppuccin-gitea.tar.gz --directory=./dist .
- name: Add zips to release
uses: softprops/action-gh-release@v1
with:
files: ./catppuccin-gitea.tar.gz