You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
使用 GitHub Actions 自动部署我的 travel blog 站点 | cloxnu's Creative Space
前情提要:在我的 travel blog 的仓库根目录下,有一个叫 gotravel 的文件,运行该文件即可自动生成网站,因此 GitHub Actions 只需要在我每次 push 之后运行这个文件再提交一次就可以了。
在 GitHub 仓库内点击菜单栏的 Actions,然后选择 set up a workflow yourself
然后就会跳转至新建文件页面,以及 GitHub 自动生成最初的 main.yml 文件。
This is a basic workflow to help you get started with Actions name: CI # Controls when the workflow will run on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: [ master ] pull_request: b
使用 GitHub Actions 自动部署我的 travel blog 站点 | cloxnu's Creative Space
前情提要:在我的 travel blog 的仓库根目录下,有一个叫 gotravel 的文件,运行该文件即可自动生成网站,因此 GitHub Actions 只需要在我每次 push 之后运行这个文件再提交一次就可以了。
在 GitHub 仓库内点击菜单栏的 Actions,然后选择 set up a workflow yourself
然后就会跳转至新建文件页面,以及 GitHub 自动生成最初的 main.yml 文件。
This is a basic workflow to help you get started with Actions name: CI # Controls when the workflow will run on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: [ master ] pull_request: b
http://localhost:1313/posts/creation/generate-my-travel-blog-by-github-actions/
The text was updated successfully, but these errors were encountered: