Update theme name in readme.txt #54
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 Version | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release branch version' | |
required: false | |
jobs: | |
merge-release-branch-to-develop: | |
if: (github.actor == 'ronkelementor' || github.actor == 'KingYes') && startsWith(github.repository, 'wpkitpro/') | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout main branch | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.MAINTAIN_TOKEN }} | |
ref: main | |
- name: Get release branch | |
env: | |
INPUT_VERSION: ${{ github.event.inputs.version }} | |
run: | | |
bash "${GITHUB_WORKSPACE}/.github/scripts/get-release-branch-name.sh" | |
- name: Checkout release branch | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.MAINTAIN_TOKEN }} | |
ref: ${{ env.RELEASE_BRANCH }} | |
- name: Merge release -> develop | |
uses: devmasx/merge-branch@a1752b9ba42bb417ec19be7dc974e2faf77d3ef2 # v1.3.1 | |
with: | |
type: now | |
from_branch: ${{ env.RELEASE_BRANCH }} | |
target_branch: develop | |
github_token: ${{ secrets.MAINTAIN_TOKEN }} | |
bump-version: | |
needs: merge-release-branch-to-develop | |
runs-on: ubuntu-16.04 | |
outputs: | |
prev_version: ${{ steps.bump_version_step.outputs.prev_version }} | |
steps: | |
- name: Checkout develop branch | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.MAINTAIN_TOKEN }} | |
ref: develop | |
- name: Bump version | |
id: bump_version_step | |
run: | | |
npm config set git-tag-version false | |
PREV_PACKAGE_VERSION=$(node -p "require('./package.json').version") | |
npm version minor | |
PACKAGE_VERSION=$(node -p "require('./package.json').version") | |
echo "PACKAGE_VERSION=${PACKAGE_VERSION}" >> $GITHUB_ENV | |
echo "::set-output name=prev_version::${PREV_PACKAGE_VERSION}" | |
- name: Update version in files | |
env: | |
VERSION: ${{ env.PACKAGE_VERSION }} | |
run: | | |
npm install --no-package-lock --no-save [email protected] | |
node ./.github/scripts/update-version-in-files.js | |
#npx grunt wp_readme | |
- name: Check if readme.txt update |