Skip to content

πŸ› οΈ chore: release v3.1.0 (Minecraft 1.21.6-1.21.8) (#477) #66

πŸ› οΈ chore: release v3.1.0 (Minecraft 1.21.6-1.21.8) (#477)

πŸ› οΈ chore: release v3.1.0 (Minecraft 1.21.6-1.21.8) (#477) #66

Workflow file for this run

name: βš™οΈ Metadata Update
on:
push:
branches:
- '**'
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
commit:
name: πŸ”– Commit Metadata
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Git User
uses: fregante/setup-git-user@v2
- name: Install PDM
uses: pdm-project/setup-pdm@v4
with:
cache: true
- name: Install Dependencies
run: pdm install
- name: Update Metadata
run: pdm run modules update
- name: Commit and Push Changes
run: |
git add .
git commit -m "πŸ› οΈ chore: update generated metadata" || echo "No metadata updates"
git push origin HEAD:${{ github.ref }}