Skip to content

Commit

Permalink
adding macos runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ADorigi committed Jun 12, 2024
1 parent dd45e6e commit 3b48f5b
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/installation-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@ on:
types: [published]

jobs:
tag:
linux:
runs-on: ubuntu-latest
steps:
- name: print tag
- name: Print Tag
run: |
echo "New tag: ${{ github.event.release.tag_name }}"
- name: test brew
- name: test kaytu
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew -v
curl -fsSL https://raw.githubusercontent.com/kaytu-io/kaytu/main/scripts/install.sh | sh
kaytu version
darwin:
runs-on: macos-latest
steps:
- name: Tap Kaytu's cli-tap
run: brew tap kaytu-io/cli-tap
- name: Install Kaytu
run: brew install kaytu
- name: Check Kaytu Version
run: kaytu version

0 comments on commit 3b48f5b

Please sign in to comment.