fix(deps): update dependency ky to v1.7.4 (#586) #516
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release-type: node | |
# ここからリリース発行後の処理 | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
- uses: oven-sh/setup-bun@v1 | |
if: ${{ steps.release.outputs.release_created }} | |
- run: bun install | |
if: ${{ steps.release.outputs.release_created }} | |
- run: bun run build | |
if: ${{ steps.release.outputs.release_created }} | |
- run: bun run zip | |
if: ${{ steps.release.outputs.release_created }} | |
- name: upload asset to release page | |
uses: shogo82148/actions-upload-release-asset@v1 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
asset_path: dist_zip/*.zip | |
- name: Upload & release | |
uses: mnao305/[email protected] | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
file-path: dist_zip/*.zip | |
extension-id: poaolllddjlbbomnohpahbpdlcklkffi | |
client-id: ${{ secrets.CLIENT_ID }} | |
refresh-token: ${{ secrets.REFRESH_TOKEN }} | |
client-secret: ${{ secrets.CLIENT_SECRET }} | |
glob: true |