23 lines
352 B
YAML
23 lines
352 B
YAML
name: artifact test
|
|
on:
|
|
- push
|
|
- workflow_dispatch
|
|
|
|
env:
|
|
ACTIONS_RUNNER_DEBUG: 'true'
|
|
|
|
jobs:
|
|
test artifacts:
|
|
steps:
|
|
- run: |
|
|
env
|
|
echo "test" > test
|
|
|
|
- name: Upload file as artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test
|
|
path: test
|
|
env:
|
|
ACTIONS_STEP_DEBUG: 'true'
|