Bump version to 3.1.5 #9
Workflow file for this run
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
name: Edge Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set tag | |
id: tag | |
run: echo "manifest=$(jq -c . < manifest.json)" >> $GITHUB_ENV | |
- name: Create Edge zip | |
run: make build/chrome | |
- name: Upload to the Edge Add-ons Store | |
uses: wdzeng/edge-addon@d4db1eea77297a24d799394dec87e8912e0902f9 | |
with: | |
product-id: ${{ secrets.EDGE_PRODUCT_ID }} | |
zip-path: build/chrome/dblpSearch-ext-${{ fromJson(env.manifest).version }}.zip | |
client-id: ${{ secrets.EDGE_CLIENT_ID }} | |
api-key: ${{ secrets.EDGE_API_KEY }} |