fix: point github action to latest release naming structure #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI for Quary CLI Action | |
on: [push, pull_request] | |
jobs: | |
test-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Test Install Latest Version | |
uses: ./ | |
with: | |
version: 'latest' | |
- name: Test Install Specific Version | |
uses: ./ | |
with: | |
version: 'v0.0.122' | |
- name: Verify Installation | |
run: quary --version |