Skip to content

Commit

Permalink
add publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
perezale committed Feb 28, 2024
1 parent ccf28e7 commit 130fd7c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: "publish"

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

jobs:
publish:
name: "Publish Package"
runs-on: ubuntu-20.04
permissions:
contents: write

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Join splitted files
run: cat ldb/ldb.tar.xz_a* > ldb.tar.xz

- name: Release
uses: softprops/action-gh-release@v1
with:
files: ldb.tar.xz

0 comments on commit 130fd7c

Please sign in to comment.