From 12dd084eb41722e7e16aba93f275f57f441adfdb Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 19 Aug 2024 14:04:14 +1200 Subject: [PATCH] Copy artifact files to output --- .github/workflows/publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0728a8e..af73bd4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v4.1.7 - uses: actions/download-artifact@v4.1.8 with: - path: output + path: files - name: Build uses: actions/jekyll-build-pages@v1.0.13 @@ -50,6 +50,9 @@ jobs: source: ./static destination: ./output + - name: Copy firmware and manifest + run: cp -r files/${{ needs.build.outputs.version }}/* output/ + - uses: actions/upload-pages-artifact@v3.0.1 with: path: output