alaskartv-app/.github/workflows/test.yml

25 lines
467 B
YAML
Raw Normal View History

2025-01-04 12:53:40 +00:00
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
2025-01-04 12:56:22 +00:00
uses: actions/upload-artifact@v3
2025-01-04 12:53:40 +00:00
with:
name: test-artifact
path: test.bin