Skip to content

Bump addon to manifest v3 #28

Bump addon to manifest v3

Bump addon to manifest v3 #28

Workflow file for this run

name: Build release
on:
push:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: '0' # all branches and tags
# ref: https://github.com/actions/cache
- name: Get cache for third party dependencies
id: cache
uses: actions/cache@v2
with:
path: third_party
key: third-party-${{ hashFiles('tools/install_third_party') }}
- name: Build third-party dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: tools/install_third_party
- name: Build package
run: tools/package
# ref: https://github.com/actions/upload-artifact
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: json-bookmarks
path: out/
# ref: https://github.com/softprops/action-gh-release
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
files: out/json-bookmarks-*.zip