Skip to content

Commit

Permalink
Update delete_files.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcafferry committed Aug 17, 2020
1 parent 1144084 commit e39a1f0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/delete_files.yml
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
name: Delete xyz files

on:
push:
branches:
- master

jobs:
build_docs_and_deploy:
runs-on: ubuntu-latest
name: build up document and deploy

steps:
- name: Checkout
uses: actions/checkout@master

- name: Clone pre repositories
run: |
ls
echo '------------------------------'
git config --global user.email "ucecwme@ucl.ac.uk"
git config --global user.name "nickcafferry"
git init
find . -name '*.xyz' | xargs git rm -rf
git commit -m "remove xyz"
git push origin master

0 comments on commit e39a1f0

Please sign in to comment.