mcData-release #179
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: minecraft-data-release | |
on: | |
repository_dispatch: | |
types: [mcData-release] | |
jobs: | |
update-mcdata: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Update minecraft data | |
run: 'cd minecraft-data/ && git fetch --all --tags && git checkout ${{ github.event.client_payload.tag }}' | |
- name: Update package.json | |
run: > | |
sed -i -E 's/^ "version": "[0-9]+\.[0-9]+\.[0-9]+"/ "version": "${{ github.event.client_payload.tag }}"/g' package.json | |
- name: Update doc/history.md | |
run: > | |
sed -i -E 's/^# History/# History\n\n## ${{ github.event.client_payload.tag }}\n\n* update \`minecraft-data\`/g' doc/history.md | |
- name: Create commits | |
run: | | |
git config user.name 'rom1504bot' | |
git config user.email '[email protected]' | |
git add minecraft-data | |
git commit -m "Update `minecraft-data`" | |
git add package.json doc/history.md | |
git commit -m "Release ${{ github.event.client_payload.tag }}" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PAT_PASSWORD }} | |
committer: rom1504bot <[email protected]> | |
author: rom1504bot <[email protected]> | |
signoff: false | |
branch: release-${{ github.event.client_payload.tag }} | |
delete-branch: true | |
title: 'Release ${{ github.event.client_payload.tag }}' | |
body: | | |
A new version of `minecraft-data` (`${{ github.event.client_payload.tag }}`) was released. |