From ae6fcf43836a2e55a9aac5be7d414f8339f6fc26 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Sun, 13 Feb 2022 05:55:12 -0500 Subject: [PATCH] ci: add build artifacts to release --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 88c49a03..33e3a052 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -296,6 +296,7 @@ jobs: - name: Tag Images run: | + docker pull requarks/wiki:beta-$REL_VERSION_STRICT docker pull ghcr.io/requarks/wiki:beta-$REL_VERSION_STRICT echo "Fetching semver tool..." @@ -329,6 +330,18 @@ jobs: docker push ghcr.io/requarks/wiki:$MAJORMINOR docker push ghcr.io/requarks/wiki:latest + - name: Download Linux Build + uses: actions/download-artifact@v2.1.0 + with: + name: drop + path: drop + + - name: Download Windows Build + uses: actions/download-artifact@v2.1.0 + with: + name: drop-win + path: drop-win + - name: Generate Changelog id: changelog uses: Requarks/changelog-action@v1 @@ -345,4 +358,5 @@ jobs: name: ${{ github.ref_name }} body: ${{ steps.changelog.outputs.changes }} token: ${{ github.token }} + artifacts: 'drop/wiki-js.tar.gz,drop-win/wiki-js-windows.tar.gz'