feat: open schematic (.litematic)

known bug: blobs of air blocks in some schematics
This commit is contained in:
trafficlunar 2025-01-10 21:01:28 +00:00
parent 8726ffeedd
commit 612d519068
5 changed files with 174 additions and 12 deletions

View file

@ -1,16 +1,13 @@
name: Ntfy Deployment Notifications
on:
push:
branches:
- main
name: Deployment Notifications
on: [deployment_status]
jobs:
notify:
if: failure() || success()
if: github.event.deployment_status.state == "failure" | github.event.deployment_status.state == "success"
runs-on: ubuntu-latest
steps:
- name: Notify on Success
if: success()
if: github.event.deployment_status.state == "success"
run: |
curl \
-H "Authorization: Bearer ${{ secrets.NTFY_TOKEN }}" \
@ -21,7 +18,7 @@ jobs:
${{ secrets.NTFY_URL }}
- name: Notify on Failure
if: failure()
if: github.event.deployment_status.state == "failure"
run: |
curl \
-H "Authorization: Bearer ${{ secrets.NTFY_TOKEN }}" \