diff --git a/.gitea/workflows/test-json.yaml b/.gitea/workflows/test-json.yaml index 814ad83..f8c109f 100644 --- a/.gitea/workflows/test-json.yaml +++ b/.gitea/workflows/test-json.yaml @@ -17,8 +17,9 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: GenerateJSON - run: echo '{"key": "value"}' > data.json + - name: Generate JSON + run: | + echo '{"key": "value"}' > data.json - name: Display contents of directory run: ls @@ -28,4 +29,3 @@ jobs: with: name: generated-json path: data.json -