We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c0e78 commit 6cf59a0Copy full SHA for 6cf59a0
.github/workflows/use-action-macos.yaml
.github/workflows/use-action.yaml
@@ -7,15 +7,19 @@ on:
7
jobs:
8
use-action:
9
name: Use Action
10
- runs-on: ubuntu-latest
+ strategy:
11
+ matrix:
12
+ platform: [ubuntu-latest, macos-latest]
13
+ runs-on: ${{ matrix.platform }}
14
+
15
steps:
16
- uses: actions/setup-go@v2
17
with:
18
go-version: 1.16
19
- uses: actions/checkout@v2
20
21
# Minimal publish
- - uses: imjasonh/setup-ko@v0.1
22
+ - uses: imjasonh/setup-ko@main
23
- run: ko publish --bare ./
24
25
# Install an old release.
0 commit comments