mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 14:18:00 +00:00
a166eb3291
* Fix the url of the fetched file * Fix binary in the GPG check * Add docker build * Import GPG pub keys * Copy missing binaries * Checkout first * Add missing mkdir * Set bin as executable * Fix exec flag earlier * Fix docker calls * Fix version parsing * Fix image names * Cleanup * Fix ENV issue * Only allow user keys on pre-releases * Add Docker Hub token and enable pushing * Make Docker owner configurable via secrets * Fix owner * Remove duplicate secret
24 lines
693 B
YAML
24 lines
693 B
YAML
name: Release - Pushes release notes to a Matrix room
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
ping_matrix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: send message
|
|
uses: s3krit/matrix-message-action@v0.0.3
|
|
with:
|
|
room_id: ${{ secrets.MATRIX_ROOM_ID }}
|
|
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
|
|
message: |
|
|
A (pre)release has been ${{github.event.action}} in **${{github.event.repository.full_name}}:**<br/>
|
|
Release version: [${{github.event.release.tag_name}}](${{github.event.release.html_url}})
|
|
|
|
-----
|
|
|
|
${{github.event.release.body}}
|
|
server: "matrix.parity.io"
|