fix javamail package name. #29
This file contains hidden or 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
| # This workflow sync the current github repo to a remote repo by using 'git push'. | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Push to remote repo | |
| uses: michaelliao/git-push-action@v3 | |
| env: | |
| PUSH_SSH_KEY: ${{ secrets.PUSH_SSH_KEY }} | |
| with: | |
| remote_repository: | | |
| [email protected]:cryptomichael/liaoxuefeng.com.git | |
| [email protected]:liaoxuefeng/liaoxuefeng.com.git | |
| push_options: "--force" |