mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
22 lines
560 B
YAML
22 lines
560 B
YAML
name: 🚀 Release Actions
|
|
run-name: 🚀 Let HyperBian create
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
|
|
hyperbian:
|
|
name: 🚀 Let HyperBian create
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Dispatch event to build new HyperBian image
|
|
- name: 📲 Dispatch HyperBian build
|
|
uses: peter-evans/repository-dispatch@v2.1.2
|
|
if: ${{ github.repository_owner == 'hyperion-project'}}
|
|
with:
|
|
repository: hyperion-project/HyperBian
|
|
token: ${{ secrets.HYPERION_BOT_TOKEN }}
|
|
event-type: hyperion_push
|