From dd992627072a0f72da51fc07b069f82129cfc043 Mon Sep 17 00:00:00 2001 From: niclaz <83479948+niclaz@users.noreply.github.com> Date: Thu, 5 Sep 2024 20:15:04 +0200 Subject: [PATCH] Adding latest actions/upload-artifact to the deploy.yml --- .github/workflows/deploy.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 747060f..f38efda 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,17 @@ permissions: id-token: write jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Creating artifact placeholder file + run: echo "this is a placeholder file" > artifact.txt + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: w3pn-artifact + path: artifact.txt + build: runs-on: ubuntu-latest steps: