Skip to content

chore: bump version to 0.3.8 #12

chore: bump version to 0.3.8

chore: bump version to 0.3.8 #12

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
build:
uses: ./.github/workflows/build.yml
with:
checkout-ref: ${{ github.ref_name }}
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: ready-zip
- uses: softprops/action-gh-release@v2
with:
draft: true
files: inseri-core.zip
deploy:
name: Deploy to WordPress.org
needs: [build, release]
uses: ./.github/workflows/deploy-wp.yml
secrets: inherit
with:
version: ${{ github.ref_name }}
push-tag: true
push-trunk: true