a11y-outline

web extension to navigate document outlines easily
git clone https://git.ce9e.org/a11y-outline.git

commit
d925c193a795c4bc30907198966d378b419b8fcb
parent
c08a330b918ab0840051042eeb83a9b78a28f63c
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-07-25 04:26
github actions: release

Diffstat

A .github/workflows/main.yml 11 +++++++++++
M Makefile 2 +-

2 files changed, 12 insertions, 1 deletions


diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml

@@ -0,0 +1,11 @@
   -1     1 on: push
   -1     2 jobs:
   -1     3   build:
   -1     4     runs-on: ubuntu-latest
   -1     5     if: startsWith(github.ref, 'refs/tags/')
   -1     6     steps:
   -1     7       - uses: actions/checkout@v3
   -1     8       - run: make
   -1     9       - uses: softprops/action-gh-release@v1
   -1    10         with:
   -1    11           files: a11y-outline.zip

diff --git a/Makefile b/Makefile

@@ -1,4 +1,4 @@
    1    -1 bundle.zip: manifest.json icon-128.png bg.js outline.js treeview.js outline.css vendor
   -1     1 a11y-outline.zip: manifest.json icon-128.png bg.js outline.js treeview.js outline.css vendor
    2     2 	rm -f $@
    3     3 	zip -r $@ $^
    4     4