From 87ed9017afe84e63486697b5e5523449cf365fd2 Mon Sep 17 00:00:00 2001 From: Tara Wilson Date: Sat, 22 Mar 2025 17:01:15 -0400 Subject: [PATCH] Updating publish pipeline --- .gitea/workflows/deploy.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 624bd7c..1f07304 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -5,8 +5,8 @@ on: types: [published] jobs: buildUI: - name: Build UI Artifact runs-on: osx + name: Build UI Artifact steps: - name: Check out repository code uses: actions/checkout@v4 @@ -14,22 +14,21 @@ jobs: run: | cd source yarn install --frozen-lockfile - - name: Build + - name: Building Application run: | cd source yarn run build - name: Saving build artifact - uses: actions/checkout@v4 - uses: actions/upload-artifact@v4 with: name: troop20web path: source/dist/troop20web/ publishUI: - name: Publishing Docker Image - runs-on: ubuntu-latest + runs-on: osx needs: [buildUI] + name: Publish Docker Image steps: - - uses: actions/checkout@v4 + - name: Getting Artifact - uses: actions/download-artifact@v4 with: name: troop20web