From a85e1bdf94dfeaebbbc8135175dd797c6b53fd1f Mon Sep 17 00:00:00 2001 From: 1357310795 <1357310795@qq.com> Date: Fri, 16 Sep 2022 11:09:19 +0800 Subject: [PATCH] update docs & actions --- .github/workflows/dotnet.yml | 29 ----------------------------- .github/workflows/linux.yml | 2 +- docs/actions-persis.md | 6 +++--- 3 files changed, 4 insertions(+), 33 deletions(-) delete mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index 6b20f9fdd8b..00000000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: TodoSync - -on: - workflow_dispatch: - schedule: - - cron: '0 0-14/1,22,23 * * *' - -jobs: - sync: - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v3 - - name: Branch Filestorage Action - uses: moonrailgun/branch-filestorage-action@v1.2.2 - with: - branch: graphtoken - path: graphtoken.asc - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 6.0.x - - name: Restore dependencies - run: dotnet restore .\TodoSynchronizer.CLI\TodoSynchronizer.CLI.csproj - - name: Build - run: dotnet build .\TodoSynchronizer.CLI\TodoSynchronizer.CLI.csproj --no-restore -c Release - - name: Run - run: .\TodoSynchronizer.CLI\bin\Release\net6.0\TodoSynchronizer.CLI.exe -canvastoken ${{ secrets.CANVAS_TOKEN }} -graphtokenfile graphtoken.asc -configfile config.yaml -graphtokenkey ${{ secrets.KEY }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 89e4f62918e..27d0f261aca 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,4 +1,4 @@ -name: TodoSync - Linux +name: TodoSync on: workflow_dispatch: diff --git a/docs/actions-persis.md b/docs/actions-persis.md index 9c278305f7e..eb0f51a2d83 100644 --- a/docs/actions-persis.md +++ b/docs/actions-persis.md @@ -66,7 +66,7 @@ ![](https://s2.loli.net/2022/08/21/fdGqptNy4FZc9Vz.png) -17. 再次到“Secrets”里,创建一个新条目,“Name”为“KEY”,“Value”为刚才输入的密钥(什么?忘记复制随机密钥了?回到第 10 步再来一次吧……) +17. 再次到“Secrets”里,创建一个新条目,“Name”为“KEY”,“Value”为刚才输入的密钥 ![](https://s2.loli.net/2022/09/14/4akGQOzVLH7nYvC.png) @@ -76,7 +76,7 @@ ![](https://s2.loli.net/2022/08/21/qtCnKdpPWRFNbgM.png) -19. 左侧选择“TodoSync”或者“TodoSync - Linux”(一个就行,推荐用 Linux 的那个),右侧点击“Run workflow” +19. 左侧选择“TodoSync”,右侧点击“Run workflow” ![](https://s2.loli.net/2022/08/21/2kcXUByTOaoLIiv.png) @@ -91,7 +91,7 @@ ### Q&A #### Fork 的仓库能不能设置为 Private? -对于公开仓库,GitHub Actions 是免费的;而对于私有仓库,GitHub Actions 每个月有 2000 分钟的免费额度,超出会有巨额收费(在[这里](https://github.com/settings/billing)看用量)。本项目每次运行大约需要 4min,也就是说每个月顶多能运行 500 次,不够用。**强烈建议保持仓库为公开状态**。 +对于公开仓库,GitHub Actions 是免费的;而对于私有仓库,GitHub Actions 每个月有 2000 分钟的免费额度,超出会有巨额收费(在[这里](https://github.com/settings/billing)看用量)。本项目每次运行大约需要 2min,也就是说每个月顶多能运行 1000 次,可能不够用。**强烈建议保持仓库为公开状态**。 #### 为什么步骤这么复杂?我的账号、Token 安全吗?