From 4dc32f3ffd6d8eed9dbd464c432a8c8585dc363f Mon Sep 17 00:00:00 2001 From: MasoodGhauri Date: Fri, 26 Apr 2024 16:11:09 +0500 Subject: [PATCH] tt --- .github/workflows/static.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml deleted file mode 100644 index 35d3aed..0000000 --- a/.github/workflows/static.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Notes_CI-CD_SCD_A2_Static - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Create deployment directory - run: mkdir -p ${{ github.workspace }}/docs/ - - - name: Copy README.md to deployment directory - run: cp README.md ${{ github.workspace }}/docs/ - - - name: Commit and push changes - run: | - cd ${{ github.workspace }}/docs/ - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git add README.md - git commit -m "Deploy README.md to GitHub Pages" - git push origin main