mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
History update build fixes (#5658)
Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
This commit is contained in:
parent
f3bd24a494
commit
d7b5c047af
2
.github/workflows/history.yml
vendored
2
.github/workflows/history.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.COMMIT_TOKEN }}
|
||||
ref: ${{ github.ref }}
|
||||
#ref: ${{ github.ref }}
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12
|
||||
|
|
|
@ -2,7 +2,10 @@ import { processChanges } from "../generic/history";
|
|||
|
||||
export async function main(): Promise<void> {
|
||||
try {
|
||||
await processChanges();
|
||||
const ret = await processChanges();
|
||||
if (ret != 0) {
|
||||
process.exit(ret);
|
||||
}
|
||||
} catch(err) {
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
|
|
Loading…
Reference in New Issue
Block a user