From 276bc73c4d5a35f7b5d402b9003a76e8a04602ff Mon Sep 17 00:00:00 2001 From: nomadics9 Date: Sat, 4 Jan 2025 15:53:40 +0300 Subject: [PATCH] testing --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..3a83e16 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: Test Artifact Upload + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test-upload: + runs-on: docker + container: ghcr.io/catthehacker/ubuntu:full-latest + + steps: + - name: Create test file + run: | + dd if=/dev/urandom of=test.bin bs=1M count=20 + ls -lh test.bin + + - name: Upload test file + uses: actions/upload-artifact@v4 + with: + name: test-artifact + path: test.bin