fix(heading): Fix styles affecting heading block reactivity (#7) #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
name: Publish release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
coverage: xdebug | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader --no-suggest --no-dev | |
- name: Cleanup unnecessary files | |
run: rm -rf .git .github .editorconfig .prettierrc .gitattributes .gitignore assets composer.json composer.lock package.json yarn.lock webpack.mix.js tailwind.config.js | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//} | |
shell: bash | |
- name: Create subfolder | |
run: mkdir gutentweaks && mv ./* gutentweaks/ 2>/dev/null | |
continue-on-error: true | |
- name: Create distributable zip file | |
uses: montudor/[email protected] | |
with: | |
args: zip -qq -r9 gutentweaks.zip gutentweaks | |
- name: Upload zip as release asset | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: gutentweaks.zip | |
asset_name: gutentweaks-${{ steps.get_version.outputs.version }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true |