From fdd2cd85d0ac46339bf3a6b3bafaf17ce8b27c6c Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Wed, 9 Jun 2021 15:47:13 +0200 Subject: [PATCH] include packaging LICENSE in release Signed-off-by: Nicolas De Loof --- .github/workflows/cli-release.yaml | 3 +++ .github/workflows/plugin-release.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/cli-release.yaml b/.github/workflows/cli-release.yaml index 41fe894b1..1bfd480c5 100644 --- a/.github/workflows/cli-release.yaml +++ b/.github/workflows/cli-release.yaml @@ -32,6 +32,9 @@ jobs: - name: Build run: make -f builder.Makefile cross + - name: License + run: cp packaging/* bin/ + - uses: ncipollo/release-action@v1 with: artifacts: "bin/*" diff --git a/.github/workflows/plugin-release.yaml b/.github/workflows/plugin-release.yaml index 82b15e77d..e393a3051 100644 --- a/.github/workflows/plugin-release.yaml +++ b/.github/workflows/plugin-release.yaml @@ -32,6 +32,9 @@ jobs: - name: Build run: make -f builder.Makefile cross-compose-plugin + - name: License + run: cp packaging/* bin/ + - uses: ncipollo/release-action@v1 with: artifacts: "bin/*"