mirror of
https://github.com/ChristopherHX/gitea-upload-artifact.git
synced 2026-04-09 08:08:21 +01:00
* Upgrade the module to ESM and bump dependencies * CI: bump node versions * Push build files * Fix linting issues * Bump the package version * Cache licenses * Bump minimatch to 10.1.1 * Try fixing licenced issues * More licensed fixes * eslint: don't allow common-js imports
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import * as core from '@actions/core'
|
|
import {run} from './merge-artifacts.js'
|
|
|
|
run().catch(error => {
|
|
core.setFailed((error as Error).message)
|
|
})
|