diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 4595db1..af87f50 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -9,9 +9,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: make content - run: | - echo "

Hello There

" > hello.html - name: push content run: | REMOTE="https://${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY}.git" @@ -27,7 +24,7 @@ jobs: echo "

hello there

" > index.html git config user.name ${COMMITER_NAME} git config user.email ${COMMITER_EMAIL} - git add --all + git add --all . git commit commit -m "DIST to gh-pages" git push --quiet --force