Skip to content

Commit

Permalink
add workflow to test GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoldegrove committed Oct 15, 2024
1 parent 787be78 commit 91790b0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: test glrd GH action
on:
workflow_dispatch:
jobs:
query:
name: query
runs-on: 'ubuntu-latest'
steps:
- name: Get latest GL patch version
id: gl_version_latest
uses: gardenlinux/glrd@main
with:
cmd: glrd --no-header --type patch --latest --fields Version
- name: Use latest GL patch version
run: echo ${{ steps.gl_version_latest.outputs.result }}
- name: Get latest GL nightly version
id: gl_version_nightly
uses: gardenlinux/glrd@main
with:
cmd: glrd --no-header --type nightly --latest --fields Version
- name: Use latest GL nightly version
run: echo ${{ steps.gl_version_nightly.outputs.result }}

0 comments on commit 91790b0

Please sign in to comment.