680cc63b3d
Relay Deploy Dev / Deploy Relay Dev (push) Failing after 1s
Remote Deploy Dev / Deploy Remote Dev (push) Failing after 2s
Test / frontend-checks (push) Blocked by required conditions
Test / changes (push) Waiting to run
Test / backend-schema-checks (push) Blocked by required conditions
Test / backend-remote-checks (push) Blocked by required conditions
Test / backend-clippy (push) Blocked by required conditions
Test / backend-test (push) Blocked by required conditions
Test / tauri-checks (push) Blocked by required conditions
23 lines
616 B
YAML
23 lines
616 B
YAML
name: Create Remote Release
|
|
|
|
on:
|
|
repository_dispatch:
|
|
types: [remote-deploy-success]
|
|
|
|
jobs:
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Create GitHub Release
|
|
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2
|
|
with:
|
|
tag_name: ${{ github.event.client_payload.tag }}
|
|
name: ${{ github.event.client_payload.tag }}
|
|
generate_release_notes: true
|
|
body: |
|
|
## Remote Service Release
|
|
|
|
✅ Deployed to ${{ github.event.client_payload.environment }}
|