mirror of
https://github.com/trafficlunar/blockmatic.git
synced 2026-06-27 22:24:12 +00:00
feat: open schematic (.litematic)
known bug: blobs of air blocks in some schematics
This commit is contained in:
parent
8726ffeedd
commit
612d519068
5 changed files with 174 additions and 12 deletions
13
.github/workflows/ntfy.yaml
vendored
13
.github/workflows/ntfy.yaml
vendored
|
|
@ -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 }}" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue