Compare commits

14 Commits
1.0 ... main

Author SHA1 Message Date
Zephrynis
b43c587c91 Remove "Release" from release name 2025-05-07 10:04:52 +01:00
Zephrynis
b69f98142f Update export_ext.yml 2025-04-15 21:59:57 +01:00
Zephrynis
e216327ce2 Update export_ext.yml 2025-04-15 21:52:24 +01:00
Zephrynis
4b5a0bb502 Update export_ext.yml 2025-04-15 21:46:42 +01:00
Zephrynis
4abb89d49d Update export_ext.yml 2025-04-15 21:42:55 +01:00
Zephrynis
93c3b03b78 Update export_ext.yml 2025-04-15 21:03:13 +01:00
Zephrynis
bba36bbc66 Update export_ext.yml 2025-04-15 20:51:35 +01:00
Zephrynis
5de37d4035 Update export_ext.yml 2025-04-15 20:32:44 +01:00
Zephrynis
01aaa8ecfa Update BP build action to v0.2.1 2025-04-15 20:27:01 +01:00
Zephrynis
e7c1c95f6a Update BP build action to v0.2 2025-04-15 20:24:24 +01:00
Zephrynis
b47cf5b059 Feat: use blueprint build action 2025-04-15 20:20:15 +01:00
Zephrynis
5f490f9128 Added install steps to readme & releases 2025-04-12 02:02:34 +01:00
Zephrynis
597b1e9d75 Fix: didnt change all occurences of wrong file name 2025-04-12 01:58:44 +01:00
Zephrynis
d8ac0ea668 Fix: file name must be same as ext identifier 2025-04-12 01:56:47 +01:00
2 changed files with 11 additions and 7 deletions

View File

@@ -23,9 +23,9 @@ jobs:
echo "Detected version: $VERSION"
echo "::set-output name=VERSION::$VERSION"
- name: Create zip of project files
run: |
zip -r sidebar-${{ steps.get_version.outputs.VERSION }}.blueprint . -x "*.git*"
- name: Blueprint Build
id: blueprint_build
uses: zephrynis/blueprint-export@v1.0.0
- name: Create Release
id: create_release
@@ -34,8 +34,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.get_version.outputs.VERSION }}
release_name: Release v${{ steps.get_version.outputs.VERSION }}
body: "${{ github.event.head_commit.message }}"
release_name: v${{ steps.get_version.outputs.VERSION }}
body: "${{ github.event.head_commit.message }}\n\n# Steps to install\n1. Drop sidebar.blueprint into your pterodactyl root folder (This is usually /var/www/pterodactyl/)\n2. Run `blueprint -i sidebar` in the terminal"
draft: false
prerelease: false
@@ -43,7 +43,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: sidebar-${{ steps.get_version.outputs.VERSION }}.blueprint
asset_name: sidebar-${{ steps.get_version.outputs.VERSION }}.blueprint
file: ${{ steps.blueprint_build.outputs.FILE }}
asset_name: ${{ steps.blueprint_build.outputs.FILE }}
tag: ${{ steps.get_version.outputs.VERSION }}
overwrite: true

View File

@@ -1,2 +1,6 @@
# ptero-sidebar
A basic sidebar for pterodactyl made using blueprint
## Steps to install
1. Drop sidebar.blueprint into your pterodactyl root folder (This is usually /var/www/pterodactyl/)
2. Run "blueprint -i sidebar" in the terminal