Skip to content

Update README.md

Update README.md #131

Workflow file for this run

name: 'Test Action'
on:
push:
branches:
- 'main'
workflow_dispatch:
permissions:
contents: write
actions: read
checks: write
jobs:
test:
name: 'Test Action'
runs-on: ubuntu-latest
steps:
- name: 'Setup Repository (${{github.event.repository.name}})'
uses: actions/checkout@v4
- name: 'Test Action'
id: 'test-action'
uses: Datapack-Registry/minecraft-manifest@main
with:
token: ${{secrets.GITHUB_TOKEN}}
- name: 'Print'
run: |
echo "${{steps.test-action.outputs.version-changed}}"
echo "${{steps.test-action.outputs.version-release-changed}}"
echo "${{steps.test-action.outputs.version-snapshot-changed}}"
echo "${{steps.test-action.outputs.version-previous-release}}"
echo "${{steps.test-action.outputs.version-previous-snapshot}}"
echo "${{steps.test-action.outputs.version-current-release}}"
echo "${{steps.test-action.outputs.version-current-snapshot}}"