From 5f4134332b313e5e489da5a47a6dd77fe576f33c Mon Sep 17 00:00:00 2001 From: Ben Hays Date: Sun, 22 Oct 2023 22:28:46 -0400 Subject: [PATCH] Artifacts --- .gitea/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 54fc44b..5f99bb2 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -23,10 +23,19 @@ jobs: run: | hugo \ --minify + - uses: actions/upload-artifact@master + with: + name: built-artifact + path: public deploy: runs-on: ubuntu-latest needs: build steps: + - uses: actions/checkout@master + - uses: actions/download-artifact@master + with: + name: built-artifact + path: public - name: pre-reqs run: apt update; apt install -y sshpass - name: Deploy to Server