Stylize sound playing button similar to the native one on Firefox 13x #2818
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: CI/CD | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prepare manifest.json with a revision number | |
run: | | |
cp webextensions/manifest.json ./ | |
version=$(cat manifest.json | jq -r ".version" | sed -r -e "s/$/.$(git log --oneline | wc -l)/") | |
cat manifest.json | jq ".version |= \"$version\"" > webextensions/manifest.json | |
- name: build xpi | |
run: make | |
- uses: actions/upload-artifact@master | |
with: | |
name: treestyletab-we.xpi | |
path: treestyletab-we.xpi |