Compare commits
8 Commits
c5f0f63efa
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 102b4fb7bf | |||
| 0dc0896291 | |||
| 1524422b09 | |||
|
|
fdab098562 | ||
| e9f627662c | |||
| 1cd8d611e2 | |||
| 03086fab06 | |||
| 294033268a |
40
.github/workflows/create-release.yml
vendored
Normal file
40
.github/workflows/create-release.yml
vendored
Normal 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 }}
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -22,8 +22,9 @@
|
|||||||
# Uncomment this line if you wish to ignore the asset store tools plugin
|
# Uncomment this line if you wish to ignore the asset store tools plugin
|
||||||
# /[Aa]ssets/AssetStoreTools*
|
# /[Aa]ssets/AssetStoreTools*
|
||||||
|
|
||||||
# Autogenerated Jetbrains Rider plugin
|
# Rider files
|
||||||
/[Aa]ssets/Plugins/Editor/JetBrains*
|
/[Aa]ssets/Plugins/Editor/JetBrains*
|
||||||
|
/.idea/
|
||||||
|
|
||||||
# Visual Studio cache directory
|
# Visual Studio cache directory
|
||||||
.vs/
|
.vs/
|
||||||
|
|||||||
15
.idea/.idea.Pacore/.idea/.gitignore
generated
vendored
15
.idea/.idea.Pacore/.idea/.gitignore
generated
vendored
@@ -1,15 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Rider ignored files
|
|
||||||
/contentModel.xml
|
|
||||||
/.idea.Pacore.iml
|
|
||||||
/modules.xml
|
|
||||||
/projectSettingsUpdater.xml
|
|
||||||
# Ignored default folder with query files
|
|
||||||
/queries/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
4
.idea/.idea.Pacore/.idea/encodings.xml
generated
4
.idea/.idea.Pacore/.idea/encodings.xml
generated
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
|
||||||
</project>
|
|
||||||
8
.idea/.idea.Pacore/.idea/indexLayout.xml
generated
8
.idea/.idea.Pacore/.idea/indexLayout.xml
generated
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="UserContentModel">
|
|
||||||
<attachedFolders />
|
|
||||||
<explicitIncludes />
|
|
||||||
<explicitExcludes />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
6
.idea/.idea.Pacore/.idea/vcs.xml
generated
6
.idea/.idea.Pacore/.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
@@ -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" ],
|
||||||
|
|||||||
Reference in New Issue
Block a user