Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Commit f6c2923

Browse files
Workflow test
Signed-off-by: thenetworkgrinch <[email protected]>
1 parent 779eeb8 commit f6c2923

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build and Publish YAGSL vendordep
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
releaseVersion:
6+
description: "Release version number"
7+
type: string
8+
required: true
9+
jobs:
10+
update:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
env:
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
releaseVersion: ${{ inputs.releaseVersion }}
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-java@v3
20+
with:
21+
distribution: 'temurin'
22+
java-version: 17
23+
- name: Clone lib branch
24+
run: |
25+
gh repo clone BroncBotz3481/YAGSL-Lib -- -b 2024
26+
cd YAGSL-Lib
27+
gh workflow run update.yml -f releaseVersion=${{ inputs.releaseVersion }}

0 commit comments

Comments
 (0)