Skip to content

Commit

Permalink
add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
4e554c4c committed Oct 17, 2024
1 parent 2a060c4 commit aba077d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags:
- "v*.*.*"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate release
run: >
git archive --format=tar.gz --prefix=themes/ HEAD:themes/ -o themes.tar.gz
- name: Release
uses: softprops/action-gh-release@v2
with:
files: themes.tar.gz
Binary file added themes.tar.gz
Binary file not shown.

0 comments on commit aba077d

Please sign in to comment.