mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 07:19:51 +00:00
Switch entrypoint and main functionality
This commit is contained in:
15
README.md
15
README.md
@ -79,22 +79,19 @@ contents of this directory with your own code.
|
||||
There are a few things to keep in mind when writing your action code:
|
||||
|
||||
- Most GitHub Actions toolkit and CI/CD operations are processed asynchronously.
|
||||
In `index.ts`, you will see that the action is run in an `async` function.
|
||||
In `main.ts`, you will see that the action is run in an `async` function.
|
||||
|
||||
```javascript
|
||||
import * as core from '@actions/core';
|
||||
...
|
||||
import * as core from '@actions/core'
|
||||
//...
|
||||
|
||||
async function run() {
|
||||
try {
|
||||
...
|
||||
}
|
||||
catch (error) {
|
||||
core.setFailed(error.message);
|
||||
//...
|
||||
} catch (error) {
|
||||
core.setFailed(error.message)
|
||||
}
|
||||
}
|
||||
|
||||
run()
|
||||
```
|
||||
|
||||
For more information about the GitHub Actions toolkit, see the
|
||||
|
Reference in New Issue
Block a user