diff --git a/.github/workflows/uploadv4.yml b/.github/workflows/uploadv4.yml new file mode 100644 index 000000000000..857a2ab57078 --- /dev/null +++ b/.github/workflows/uploadv4.yml @@ -0,0 +1,17 @@ +name: Upload Artifact Example + +on: [push] + +jobs: + upload-artifact: + runs-on: ubuntu-latest + steps: + - name: Create a file to upload + run: echo "Hello, World!" > artifact.txt + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: playground/buran/artifact.txt + overwrite: true