Skip to content

fix: Removed unexistent SQL field in PS < 1.7 (#206) #68

fix: Removed unexistent SQL field in PS < 1.7 (#206)

fix: Removed unexistent SQL field in PS < 1.7 (#206) #68

Workflow file for this run

name: Create Release
on:
push:
tags:
- "v*.*.*"
jobs:
create-release:
name: Build & Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Build
id: vars
run: |
tag=${GITHUB_REF#refs/*/}
zip_path="doofinder-prestashop.zip"
echo "tag=$tag" >> $GITHUB_OUTPUT
echo "zip_path=$zip_path" >> $GITHUB_OUTPUT
git archive --format=zip -o $zip_path --prefix doofinder/ $tag
- name: Create release & upload asset
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
draft: true
files: ${{ steps.vars.outputs.zip_path }}
name: Doofinder Prestashop Addon ${{ steps.vars.outputs.tag }}