diff --git a/.github/actions/github-release/action.yml b/.github/actions/github-release/action.yml index 17c4715b9c121..992fea079f9ef 100644 --- a/.github/actions/github-release/action.yml +++ b/.github/actions/github-release/action.yml @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: 'wasmtime github releases' description: 'wasmtime github releases' inputs: diff --git a/.github/actions/github-release/main.js b/.github/actions/github-release/main.js index b320c1927e6fc..d7548b95f03a3 100644 --- a/.github/actions/github-release/main.js +++ b/.github/actions/github-release/main.js @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + const core = require('@actions/core'); const path = require("path"); const fs = require("fs"); diff --git a/.github/actions/github-release/package.json b/.github/actions/github-release/package.json index 80ab88253ad6e..a5726159a19f5 100644 --- a/.github/actions/github-release/package.json +++ b/.github/actions/github-release/package.json @@ -1,6 +1,7 @@ { "name": "wasmtime-github-release", "version": "0.0.0", + "license": "Apache-2.0 WITH LLVM-exception", "main": "main.js", "dependencies": { "@actions/core": "^1.9.1",