From c8175c28a9507cea9a6c88a653e5ac3082a87f16 Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Thu, 15 Aug 2024 14:14:10 -0400 Subject: [PATCH] Add upload artifact --- .github/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cd6f94e..2eb51a1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,3 +29,15 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "k8s config token ${{secrets.K8S_CONFIG }}" + create-artifact: + runs-on: utbuntu-latest + steps: + - name: create file + run: mkdir version + run: echo "v0.0.1" > version.txt + - name: upload artifact + uses: actions/upload-artifact@v3 + with: + name: version.zip + path: version +