try to debug macos-latest issue

This commit is contained in:
Jason Hall 2021-04-30 11:06:59 -04:00
parent edd29cfde6
commit 59875a5b2a
2 changed files with 5 additions and 3 deletions

View File

@ -19,18 +19,18 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Minimal publish # Minimal publish
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@main
- run: ko publish --bare ./ - run: ko publish --bare ./
# Install an old release. # Install an old release.
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@main
with: with:
version: v0.8.0 version: v0.8.0
- name: Check installed version - name: Check installed version
run: ko version | grep 0.8.0 run: ko version | grep 0.8.0
# Install from tip # Install from tip
- uses: imjasonh/setup-ko@v0.3 - uses: imjasonh/setup-ko@main
with: with:
version: tip version: tip
- name: Check installed version (tip) - name: Check installed version (tip)

View File

@ -13,6 +13,8 @@ runs:
steps: steps:
- shell: bash - shell: bash
run: | run: |
set -ex
# Install ko: # Install ko:
# - if version is "tip", install from tip of main. # - if version is "tip", install from tip of main.
# - if version is "latest-release", look up latest release. # - if version is "latest-release", look up latest release.