testing
This commit is contained in:
parent
e9ca571d8a
commit
276bc73c4d
1 changed files with 24 additions and 0 deletions
24
.github/workflows/test.yml
vendored
Normal file
24
.github/workflows/test.yml
vendored
Normal 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
|
Loading…
Reference in a new issue