Add emoji and voiceover data #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send genshin-db_release repository dispatch | |
on: | |
release: | |
types: [published] | |
jobs: | |
genshin-db_release: | |
strategy: | |
matrix: | |
repo: ['theBowja/genshin-db-dist'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.PUBLIC_REPO_PAT }} | |
repository: ${{ matrix.repo }} | |
event-type: genshin-db_release | |
client-payload: '{"tagname": "${{ github.ref_name}}"}' # for example github.ref_name might be "v5.0.0" |