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 +