From 671ecf2924bb1d67c57b7afeb855fa6fc78b46ae Mon Sep 17 00:00:00 2001 From: Alex McCormick Date: Tue, 1 Feb 2022 19:18:20 +0000 Subject: [PATCH] Release manifest --- .github/workflows/continuous-integration.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index fc494675..4f1a8894 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -78,3 +78,15 @@ jobs: asset_path: Dockerfile-CI asset_name: Dockerfile asset_content_type: text/plain + + - name: Upload manifest release artifact (master only) + id: upload_manifest_release_artifact + #if: github.ref == 'refs/heads/master' + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./src/main/resources/manifest.json + asset_name: manifest.json + asset_content_type: application/json