mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
20 lines
473 B
YAML
20 lines
473 B
YAML
name: Release
|
|
on:
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: "thorvg"
|
|
- name: Create source archive
|
|
run: |
|
|
rm -rf ./thorvg/.git* ./thorvg/res
|
|
tar -I "gzip -9" -cf thorvg.tar.gz thorvg
|
|
- name: Upload to release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: thorvg.tar.gz
|