-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (33 loc) · 1.42 KB
/
test_action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: 'Test Latest Build 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: MinecraftPlayground/minecraft-manifest@main
with:
token: ${{secrets.GITHUB_TOKEN}}
- name: 'Print'
run: |
echo "version-changed: ${{steps.test-action.outputs.version-changed}}"
echo "version-release-changed: ${{steps.test-action.outputs.version-release-changed}}"
echo "version-snapshot-changed: ${{steps.test-action.outputs.version-snapshot-changed}}"
echo "version-previous-release: ${{steps.test-action.outputs.version-previous-release}}"
echo "version-previous-snapshot: ${{steps.test-action.outputs.version-previous-snapshot}}"
echo "version-current-release: ${{steps.test-action.outputs.version-current-release}}"
echo "version-current-release-url: ${{steps.test-action.outputs.version-current-release-url}}"
echo "version-current-snapshot: ${{steps.test-action.outputs.version-current-snapshot}}"
echo "version-current-snapshot-url: ${{steps.test-action.outputs.version-current-snapshot-url}}"