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