11 lines
249 B
YAML
11 lines
249 B
YAML
on: [push]
|
|
jobs:
|
|
release:
|
|
runs-on: docker
|
|
steps:
|
|
- run: mkdir -p mypath
|
|
- run: echo "hello" > mypath/world.txt
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: my-artifact
|
|
path: mypath/world.txt
|