alaskartv-app/.github/workflows/test.yml
nomadics9 562834ca03
All checks were successful
Test Artifact Upload / test-upload (push) Successful in 28s
testing
2025-01-04 15:56:22 +03:00

24 lines
467 B
YAML

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@v3
with:
name: test-artifact
path: test.bin