Skip to content

Commit 21527ad

Browse files
authored
Merge pull request #1 from getappmap/test-action
Create main.yml
2 parents bef67a8 + fc6274c commit 21527ad

File tree

17 files changed

+17741
-654
lines changed

17 files changed

+17741
-654
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on: [push]
2+
3+
jobs:
4+
install_appmap_job:
5+
runs-on: ubuntu-latest
6+
name: Install AppMap
7+
steps:
8+
- name: Checkout step
9+
uses: actions/checkout@v3
10+
- name: Install AppMap step
11+
uses: ./
12+
id: install-appmap

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1+
# You know why
12
node_modules
2-
33
yarn-debug.log*
44
yarn-error.log*
5+
6+
# Temporary build output
7+
build
8+
9+
# Files created when testing this action on itself.
10+
appmap.yml
11+
patch

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018 GitHub, Inc. and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.
22+

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ inputs:
1414
description: Enable verbose logging.
1515
required: false
1616
default: false
17+
outputs:
18+
patch:
19+
description: Patch file of changes made by the installer.
1720
runs:
1821
using: 'node16'
19-
main: 'lib/index.js'
22+
main: 'dist/index.js'

dist/Installer.js

Lines changed: 0 additions & 40 deletions
This file was deleted.

dist/downloadFile.js

Lines changed: 0 additions & 35 deletions
This file was deleted.

dist/executeCommand.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)