rose-pine-gitea/.github/workflows/release.yml

22 lines
479 B
YAML
Raw Normal View History

2023-03-26 15:51:00 +00:00
name: Release
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
2023-03-26 15:51:00 +00:00
with:
deno-version: v1.x
- run: deno task build
2023-03-26 15:51:00 +00:00
- 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