From feac83016356f1e0f50b58450194691983c5258f Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Thu, 15 Aug 2024 14:20:20 -0400 Subject: [PATCH] Fix order --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3e51170..a6c79a6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,8 +33,10 @@ jobs: runs-on: ubuntu-latest steps: - name: create file - run: echo "v0.0.1" > version.txt - - run: mkdir version + run: | + mkdir version + echo "v0.0.1" > version/version.txt + ls ${{ github.workspace}} - name: upload artifact uses: actions/upload-artifact@v3 with: