Skip to content

Manifest version 3 and tagging #4

Manifest version 3 and tagging

Manifest version 3 and tagging #4

Workflow file for this run

name: main
on:
push:
branches:
- main
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt install -y jq
- run: manifest_version=$(jq -r '.version' src/manifest.json)
- run: zip -r "minimal-grey-chrome.$manifest_version.zip" src
- run: git tag -a $manifest_version -m "$manifest_version"
- run: git push --follow-tags