Skip to content

Remove branch check #10

Remove branch check

Remove branch check #10

Workflow file for this run

name: Zip release excluding docs
on:
# Only trigger on push with a version tag
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
Zip-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Only zip python files
run: zip image-matcher.zip *.py
- name: Release
uses: softprops/action-gh-release@v1
with:
files: image-matcher.zip