Keep in-content UI if the new active tab is the paired tab of the spl… #3538
This file contains hidden or 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@v6 | |
| - 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@v7 | |
| with: | |
| name: treestyletab-we.xpi | |
| path: treestyletab-we.xpi |