mirror of https://github.com/PCSX2/pcsx2.git
25 lines
517 B
YAML
25 lines
517 B
YAML
name: 📢 Announce Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
announce:
|
|
if: github.repository == 'PCSX2/pcsx2'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Announce Release
|
|
env:
|
|
DISCORD_BUILD_WEBHOOK: ${{ secrets.DISCORD_BUILD_WEBHOOK }}
|
|
run: |
|
|
cd ./.github/workflows/scripts/releases/announce-release
|
|
npm ci
|
|
node index.js
|