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