From df2e9a107be155cd6ecbd9f90efe6ea4490c9b30 Mon Sep 17 00:00:00 2001 From: Louis Guidez reind33r Date: Wed, 7 Feb 2024 23:40:59 +0100 Subject: [PATCH] testing actions --- .forgejo/workflows/deploy.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index c39a45a..f7b158c 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -7,7 +7,7 @@ jobs: build: runs-on: docker container: - image: node:16-bullseye # Default for Forgejo + image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact steps: - uses: actions/checkout@v3 - name: Install dependencies @@ -21,12 +21,11 @@ jobs: path: dist/ deploy: needs: [build] - runs-on: docker # Defaults to Alpine in my runner + runs-on: node:16-bullseye # Required by actions/download-artifact steps: - uses: actions/download-artifact@v3 with: name: dist - name: List all files - shell: ash run: | ls -la dist \ No newline at end of file