From 4f2b7d129a3559ee6fe0e8a0bd2ae97f11678a58 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 7 Oct 2023 17:42:28 -0300 Subject: [PATCH] Remove .github/workflows --- .github/workflows/syncBranches.yml | 50 ------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/syncBranches.yml diff --git a/.github/workflows/syncBranches.yml b/.github/workflows/syncBranches.yml deleted file mode 100644 index 9e10bfe..0000000 --- a/.github/workflows/syncBranches.yml +++ /dev/null @@ -1,50 +0,0 @@ -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: install.sh - - - uses: actions/checkout@v2 - with: - ref: gh-pages - - - name: Delete old index.html - run: | - rm index.html - - - 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/install.sh index.html - rm -rf cocoArtifact - if [ ! -z "$(git status --porcelain)" ]; then - git add index.html - git commit -m "Add changes from master branch" - git push - fi - - - uses: geekyeggo/delete-artifact@v1 - with: - name: cocoArtifact