Skip to content

Workflow file for this run

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clean up old artifacts
run: |

Check failure on line 6 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
rm -rf ./path/to/artifact1
rm -rf ./path/to/artifact2
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifact-1
path: path/to/artifact1
- name: Upload more artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifact-2
path: path/to/artifact2