Skip to content

1.1.1

1.1.1 #8

Workflow file for this run

name: Create release
on:
release:
types: [ released ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Zip Folder
run: zip -r ${{ github.event.repository.name }}.zip . -x ".git/*" ".github/*" "node_modules/*" ".gitignore" ".editorconfig" ".phpcs.xml" "composer.json" "composer.lock" "package.json" "package-lock.json"
- name: Release
uses: softprops/action-gh-release@v2
with:
files: ${{ github.event.repository.name }}.zip