Skip to content

release 4.0.9-beta #139

release 4.0.9-beta

release 4.0.9-beta #139

Workflow file for this run

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "*-beta*"
name: Beta Release
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-20.04
steps:
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
- name: Checkout code
uses: actions/checkout@v3
- name: Build project
env:
TAG_NAME: ${{ github.ref }}
run: |
make install_php_scoper
make build
mv dist podlove-podcasting-plugin-for-wordpress
zip -r podlove-podcasting-plugin-for-wordpress.zip podlove-podcasting-plugin-for-wordpress
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
name: ${{ github.ref }}
draft: false
prerelease: false
files: |
podlove-podcasting-plugin-for-wordpress.zip