Skip to content

Commit

Permalink
release v1.0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymond Jiang committed Jan 16, 2024
1 parent ce89aa1 commit 5d8a0ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,31 @@ jobs:
- name: Build
run: yarn build

- name: Archive production artifacts
- name: Create ZIP File
run: zip -r ChatGPT_Translation_Bot.zip dist/

- name: Archive production artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
name: ChatGPT_Translation_Bot.zip
path: ChatGPT_Translation_Bot.zip

release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
pull-requests: write

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Download artifacts
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: dist
name: ChatGPT_Translation_Bot.zip

- name: Create Release
id: create_release
Expand All @@ -61,6 +68,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/ChatGPT_Translation_Bot.zip
asset_path: ./ChatGPT_Translation_Bot.zip
asset_name: ChatGPT_Translation_Bot.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "ChatGPT Translation Bot",
"description": "Use AI tools(ChatGPT) to translate any selected text on the website into your set language.",
"version": "1.0.6",
"version": "1.0.6.1",
"permissions": [
"storage"
],
Expand Down

0 comments on commit 5d8a0ff

Please sign in to comment.