-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for artifact download file name changes since 0.3.7
- Loading branch information
1 parent
a96f05b
commit 571dc7f
Showing
2 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ on: | |
paths-ignore: | ||
- '**.md' | ||
|
||
env: | ||
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
|
@@ -18,8 +21,20 @@ jobs: | |
|
||
steps: | ||
- name: asdf_plugin_test | ||
uses: asdf-vm/actions/[email protected] | ||
uses: asdf-vm/actions/plugin-test@v2 | ||
with: | ||
command: ollama --version | ||
|
||
# these tests to cover when the naming convention of the download files changed | ||
|
||
- name: asdf_plugin_test_0_3_6 | ||
uses: asdf-vm/actions/plugin-test@v2 | ||
with: | ||
command: ollama --version | ||
version: "0.3.6" | ||
|
||
- name: asdf_plugin_test_0_3_7 | ||
uses: asdf-vm/actions/plugin-test@v2 | ||
with: | ||
command: ollama --version | ||
env: | ||
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
version: "0.3.7" |
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