testing
Some checks failed
Test Artifact Upload / test-upload (push) Has been cancelled
Build Latest / AlaskarTV (push) Has been cancelled

This commit is contained in:
nomadics9 2025-01-04 15:53:40 +03:00
parent e9ca571d8a
commit 276bc73c4d

24
.github/workflows/test.yml vendored Normal file
View file

@ -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