Compare commits

...

6 Commits

Author SHA1 Message Date
102b4fb7bf Revert "Merge branch 'main' of https://git.bibko.uk/Pasha/Pacore"
This reverts commit 0dc0896291, reversing
changes made to 1524422b09.
2026-02-02 10:26:54 +00:00
0dc0896291 Merge branch 'main' of https://git.bibko.uk/Pasha/Pacore 2026-02-02 10:19:51 +00:00
1524422b09 Updated workflow for correct folder layout 2026-02-02 10:19:43 +00:00
Pasha Bibko
fdab098562 tmp 2026-01-29 15:59:27 +00:00
e9f627662c Fixed workflow 2026-01-28 22:47:58 +00:00
1cd8d611e2 Added automated release action 2026-01-28 22:35:33 +00:00
2 changed files with 41 additions and 1 deletions

40
.github/workflows/create-release.yml vendored Normal file
View File

@@ -0,0 +1,40 @@
name: Create Unity package from repo
on:
workflow_dispatch:
inputs:
version:
description: 'Release version (e.g. 1.0.0)'
required: true
jobs:
build-package:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Unity package folder
run: |
mkdir -p package
rsync -av --exclude='*.meta' Assets/Pacore/ package/
- name: Create tarball
run: |
VERSION=${{ github.event.inputs.version }}
PACKAGE_NAME="com.pashabibko.pacore-${VERSION}.tgz"
tar -czf "$PACKAGE_NAME" package
ls -1h "$PACKAGE_NAME"
- name: Create Github Release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.event.inputs.version }}
name: Release ${{ github.event.inputs.version }}
body: "Automated release of Pacore package"
artifacts: "com.pashabibko.pacore-${{ github.event.inputs.version }}.tgz"
draft: false
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,7 +1,7 @@
{ {
"name": "com.pashabibko.pacore", "name": "com.pashabibko.pacore",
"displayName": "Pacore", "displayName": "Pacore",
"version": "1.0.0", "version": "1.1.1-alpha",
"unity": "2022.3", "unity": "2022.3",
"description" : "Small Unity Util library", "description" : "Small Unity Util library",
"keywords": [ "tool", "script", "runtime" ], "keywords": [ "tool", "script", "runtime" ],