Skip to content

Commit

Permalink
Workflow test
Browse files Browse the repository at this point in the history
Signed-off-by: thenetworkgrinch <thenetworkgrinch@users.noreply.github.com>
  • Loading branch information
thenetworkgrinch committed Nov 5, 2024
1 parent 779eeb8 commit f6c2923
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Publish YAGSL vendordep
on:
workflow_dispatch:
inputs:
releaseVersion:
description: "Release version number"
type: string
required: true
jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
releaseVersion: ${{ inputs.releaseVersion }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Clone lib branch
run: |
gh repo clone BroncBotz3481/YAGSL-Lib -- -b 2024
cd YAGSL-Lib
gh workflow run update.yml -f releaseVersion=${{ inputs.releaseVersion }}

0 comments on commit f6c2923

Please sign in to comment.