Skip to content

Commit

Permalink
chore: バージョンアップ作業 (#736)
Browse files Browse the repository at this point in the history
* version update

* api report
  • Loading branch information
FineArchs authored Jul 30, 2024
1 parent 0fc741a commit 9a58e05
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ on:
workflow_dispatch:

jobs:
get-branches:
runs-on: ubuntu-latest
outputs:
branches: ${{ steps.getb.outputs.branches }}
steps:
- id: getb
run: |
branches=[$(git branch -r | grep origin | grep -v '\->' | sed 's/\s*origin\///' | sed 's/^.*$/"&",/')]
echo "branches=$branches" >> $GITHUB_OUTPUT
publish:
runs-on: ubuntu-latest
strategy:
Expand All @@ -18,6 +29,8 @@ jobs:
tag: next
env:
NPM_SECRET: ${{ secrets.NPM_SECRET }}
needs: get-branches
if: contains(fromJSON(needs.get-branches.outputs.branches), matrix.branch)

steps:
- name: Checkout ${{ matrix.branch }}
Expand Down
2 changes: 1 addition & 1 deletion etc/aiscript.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type AddAssign = NodeBase & {
};

// @public (undocumented)
export const AISCRIPT_VERSION: "0.19.0";
export const AISCRIPT_VERSION: "1.0.0";

// @public (undocumented)
abstract class AiScriptError extends Error {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@syuilo/aiscript",
"version": "0.19.0",
"version": "1.0.0",
"description": "AiScript implementation",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"license": "MIT",
Expand Down Expand Up @@ -57,4 +57,4 @@
"stringz": "2.1.0",
"uuid": "9.0.1"
}
}
}

0 comments on commit 9a58e05

Please sign in to comment.