Change to release packaging
Some checks failed
Package build / build (16.x) (push) Failing after 6m40s

This commit is contained in:
2025-10-11 15:07:29 +02:00
parent 0b07f6a5a4
commit 2c0a4f49a6

View File

@@ -2,8 +2,11 @@ name: Package build
on: on:
push: push:
branches: tags:
- draggable - 'mod*'
permissions:
contents: write
jobs: jobs:
build: build:
@@ -39,3 +42,12 @@ jobs:
with: with:
name: Deck app tarball name: Deck app tarball
path: build/artifacts/deck.tar.gz path: build/artifacts/deck.tar.gz
- name: Attach tarball to release
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2
id: attach_to_release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/artifacts/deck.tar.gz
asset_name: deck.tar.gz
tag: ${{ github.ref }}
overwrite: true