diff --git a/README.md b/README.md index 47cb2eb..76a50e7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Qiita CLI とは、手元の環境で記事の執筆・プレビュー・投稿ができるツールです。 Qiita CLI を使うことで、普段お使いのエディタなどを使って記事の執筆・投稿がしやすくなります。 -> Qiita CLI、Qiita Preview は現在ベータ版です。
破壊的なアップデートなどが頻繁にされる可能性がございますのでご了承ください。
不具合やご意見などございましたら[Qiita Discussions](https://github.com/increments/qiita-discussions/discussions)へご投稿ください。 +> 不具合やご意見などございましたら[Qiita Discussions](https://github.com/increments/qiita-discussions/discussions)へご投稿ください。 ## ご利用の前に @@ -16,9 +16,6 @@ Qiita CLI、Qiita Preview を利用されたら、[利用規約](https://qiita.c Qiita の Markdown 記法については[Markdown 記法 チートシート](https://qiita.com/Qiita/items/c686397e4a0f4f11683d)をご覧ください。 -Qiita CLI、Qiita Preview は現在ベータ版です。 -機能についても開発中のものがあります。 - ## Qiita CLI の導入方法について ### 1. 事前準備 diff --git a/actions/publish/action.yml b/actions/publish/action.yml index fc4adfd..e2d15dd 100644 --- a/actions/publish/action.yml +++ b/actions/publish/action.yml @@ -14,7 +14,7 @@ runs: with: node-version: "18.16.0" - name: Install qiita-cli - run: npm install -g @qiita/qiita-cli@v0.7.0 + run: npm install -g @qiita/qiita-cli@v1.0.0 shell: bash - name: Publish articles run: qiita publish --all diff --git a/package.json b/package.json index 2de3bae..514819e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@qiita/qiita-cli", - "version": "0.7.0", + "version": "1.0.0", "description": "Qiita CLI is a tool that allows you to write, preview and publish articles on Qiita from local environment.", "keywords": [ "Qiita" diff --git a/src/commands/init.ts b/src/commands/init.ts index 638c495..519fdcf 100644 --- a/src/commands/init.ts +++ b/src/commands/init.ts @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: increments/qiita-cli/actions/publish@v0 + - uses: increments/qiita-cli/actions/publish@v1 with: qiita-token: \${{ secrets.QIITA_TOKEN }} `;