-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from pagarme/update-action
Update action
- Loading branch information
Showing
4 changed files
with
1,103 additions
and
922 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
name: "units-test" | ||
name: "build" | ||
on: [push] | ||
|
||
jobs: | ||
units: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- run: npm ci | ||
- run: npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: 'ecs task definition replacements' | ||
description: 'get the currently running task definition, replace values (like image)' | ||
inputs: | ||
cluster-name: # id of input | ||
cluster-name: | ||
description: cluster that service is running | ||
required: true | ||
service-name: # id of input | ||
service-name: | ||
description: service to get current running task definition | ||
required: false | ||
task-name: # id of input | ||
task-name: | ||
description: task family to get the latest task definition revision | ||
required: false | ||
replacements: # id of input | ||
replacements: | ||
description: "JSON between '' eg '{\"name\": \"Andrew\"}'" | ||
required: true | ||
|
||
outputs: | ||
taskDef: | ||
description: 'Path to the new json file' | ||
runs: | ||
using: 'node12' | ||
using: 'node16' | ||
main: 'dist/index.js' |
Oops, something went wrong.