From f9c4ee79c81a6b81f425225d1a87337f35b59648 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 26 Dec 2021 21:39:50 -0300 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ad652d5 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,50 @@ +name: sync-branches + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + sync: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: actions/upload-artifact@v2 + with: + name: cocoArtifact + path: README.md + + - uses: actions/checkout@v2 + with: + ref: gh-pages + + - name: Delete old README.md + run: | + rm README.md + + - uses: actions/download-artifact@v2 + with: + name: cocoArtifact + path: cocoArtifact + + - name: Push to gh-pages + run: | + git config --local user.name "$(git log --format=%an | head -n 1)" + git config --local user.email "$(git log --format=%ae | head -n 1)" + mv cocoArtifact/README.md README.md + rm -rf cocoArtifact + if [ ! -z "$(git status --porcelain)" ]; then + git add README.md + git commit -m "Add changes from master branch" + git push + fi + + - uses: geekyeggo/delete-artifact@v1 + with: + name: cocoArtifact