File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed
Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test get-tag-name action
2+
3+ on :
4+ workflow_call :
5+
6+ jobs :
7+ test :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout repository
11+ uses : actions/checkout@v6
12+
13+ - name : Run get-tag-name
14+ uses : ./get-tag-name
15+ with :
16+ VERSION : " 5.4.1"
Original file line number Diff line number Diff line change 4343 test-get-supported-platforms :
4444 uses : ./.github/workflows/test-get-supported-platforms.yml
4545
46+ test-get-tag-name :
47+ uses : ./.github/workflows/test-get-tag-name.yml
48+
4649 test-resolve-editions :
4750 uses : ./.github/workflows/test-resolve-editions.yml
4851
6770 - test-get-jfrog-credentials
6871 - test-get-supported-jdks
6972 - test-get-supported-platforms
73+ - test-get-tag-name
7074 - test-resolve-editions
7175 - test-setup-maven-snapshot-internal
7276 - test-slack-notification
Original file line number Diff line number Diff line change 1+ name : Get tag name from version
2+
3+ inputs :
4+ VERSION :
5+ required : true
6+ outputs :
7+ TAG_NAME :
8+ value : v${{ inputs.VERSION }}
9+ runs :
10+ using : " composite"
11+ steps :
12+ - shell : bash
13+ run : exit 0
You can’t perform that action at this time.
0 commit comments