Skip to content

Commit 5c3f1f2

Browse files
authored
Merge pull request #1 from gitpod-io/cw/fix-action
Use correct URL
2 parents c8518f3 + a603669 commit 5c3f1f2

File tree

7 files changed

+83
-30226
lines changed

7 files changed

+83
-30226
lines changed

.github/workflows/ona-cli.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
test-action:
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest, windows-latest]
14+
os: [ubuntu-latest, macos-latest]
15+
channel: [latest, stable]
1516
runs-on: ${{ matrix.os }}
1617
steps:
1718
- name: Checkout
@@ -21,6 +22,7 @@ jobs:
2122
uses: ./
2223
with:
2324
token: ${{ secrets.ONA_TOKEN }}
25+
channel: ${{ matrix.channel }}
2426

2527
- name: Verify CLI
2628
run: gitpod --help

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch action",
11+
"env": {
12+
"RUNNER_TEMP": "/tmp"
13+
},
14+
"skipFiles": ["<node_internals>/**"],
15+
"program": "${workspaceFolder}/dist/index.js"
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)