16 lines
335 B
YAML
16 lines
335 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: node-latest
|
|
steps:
|
|
- name: File Creation
|
|
run: |
|
|
echo "TEST" > test.txt
|
|
ls
|
|
cat test.txt
|
|
|
|
- name: Artifact Upload
|
|
uses: https://gitea.com/actions/gitea-upload-artifact@v4
|
|
with:
|
|
name: test
|
|
path: test.txt |