hugo #146
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hugo | |
on: | |
schedule: | |
- cron: "0 0 * * *" # 每天在 00:00 執行 | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push | |
run: | | |
echo "Installing dependencies" | |
npm install | |
echo "Building and pushing" | |
npm run build && npm run node | |
echo "Done" | |
env: | |
USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
- name: Push changes | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add README.md | |
git diff --cached --quiet || git commit -m "Update README.md" | |
git push origin main | |
- name: update description | |
if: success() | |
uses: peter-evans/dockerhub-description@v2 | |
env: | |
USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
repository: ${{ env.USERNAME }}/hugo |